~ubuntu-branches/ubuntu/maverick/digikam/maverick

« back to all changes in this revision

Viewing changes to libs/imageproperties/imagepropertiessidebar.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Luka Renko
  • Date: 2009-03-17 23:07:56 UTC
  • mfrom: (1.2.20 upstream) (3.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20090317230756-db5b8rqjwb2j35e5
Tags: 2:0.10.0-1ubuntu1
* Remaining changes to Debian (committed to Debian SVN):
  - Depends: kde-icons-oxygen dropped (included through kdelibs)
  - Recommends: kipi-plugins added (provides major functionality)
  - debian/digikamthemedesigner.manpage: add missing manpage
* Remaning change to Debian:
  - Section: devel for -dbg package (no debug in Jaunty)

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
    if (tab == m_propertiesTab && !m_dirtyPropertiesTab)
146
146
    {
147
147
        m_propertiesTab->setCurrentURL(m_currentURL);
148
 
        setImagePropertiesInformations(m_currentURL);
 
148
        setImagePropertiesInformation(m_currentURL);
149
149
        m_dirtyPropertiesTab = true;
150
150
    }
151
151
    else if (tab == m_metadataTab && !m_dirtyMetadataTab)
167
167
    unsetCursor();
168
168
}
169
169
 
170
 
void ImagePropertiesSideBar::setImagePropertiesInformations(const KUrl& url)
 
170
void ImagePropertiesSideBar::setImagePropertiesInformation(const KUrl& url)
171
171
{
172
172
    QString str;
173
173
    QString unavailable(i18n("<i>unavailable</i>"));
283
283
 
284
284
    // -- Photograph information ------------------------------------------
285
285
 
286
 
    PhotoInfoContainer photoInfo = metaData.getPhotographInformations();
 
286
    PhotoInfoContainer photoInfo = metaData.getPhotographInformation();
287
287
 
288
288
    m_propertiesTab->setPhotoInfoDisable(photoInfo.isEmpty());
289
289