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

« back to all changes in this revision

Viewing changes to utilities/imageeditor/editor/imageiface.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:
379
379
    return DImgInterface::defaultInterface()->getXmp();
380
380
}
381
381
 
382
 
PhotoInfoContainer ImageIface::getPhotographInformations() const
 
382
PhotoInfoContainer ImageIface::getPhotographInformation() const
383
383
{
384
384
    DMetadata meta;
385
385
    meta.setExif(DImgInterface::defaultInterface()->getExif());
386
386
    meta.setIptc(DImgInterface::defaultInterface()->getIptc());
387
387
    meta.setXmp(DImgInterface::defaultInterface()->getXmp());
388
 
    return meta.getPhotographInformations();
 
388
    return meta.getPhotographInformation();
389
389
}
390
390
 
391
391
void ImageIface::paint(QPaintDevice* device, int x, int y, int w, int h,