~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to digikam/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2010-04-09 21:30:01 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100409213001-4bfyibrd359rn7o3
Tags: 2:1.2.0-0ubuntu1
* New upstream release (LP: #560576)
* Remove all patches, fixed upstream
  - Remove quilt build-depend

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
    options.add("database-directory <dir>", ki18n("Start digikam with the database file found in the directory <dir>"));
89
89
    KCmdLineArgs::addCmdLineOptions( options );
90
90
 
91
 
#if KEXIV2_VERSION >= 0x000300
92
91
    KExiv2Iface::KExiv2::initializeExiv2();
93
 
#endif
94
92
 
95
93
    KApplication app;
96
94
 
194
192
 
195
193
    int ret = app.exec();
196
194
 
197
 
#if KEXIV2_VERSION >= 0x000300
198
195
    KExiv2Iface::KExiv2::cleanupExiv2();
199
 
#endif
200
196
 
201
197
    return ret;
202
198
}