~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to importwizard/importwizard.cpp

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include "mailapp/mailappimportdata.h"
37
37
#include "pmail/pmailimportdata.h"
38
38
#include "thebat/thebatimportdata.h"
 
39
#include "balsa/balsaimportdata.h"
 
40
#include "claws-mail/clawsmailimportdata.h"
39
41
 
40
42
#include <kaboutapplicationdialog.h>
41
43
#include <kglobal.h>
52
54
  setWindowTitle( i18n( "PIM Import Tool" ) );
53
55
  KGlobal::locale()->insertCatalog( "libmailimporter" );
54
56
  KGlobal::locale()->insertCatalog( "libmailcommon" );
 
57
  KGlobal::locale()->insertCatalog( "libpimcommon" );
55
58
 
56
59
  ImportWizardKernel *kernel = new ImportWizardKernel( this );
57
60
  CommonKernel->registerKernelIf( kernel ); //register KernelIf early, it is used by the Filter classes
110
113
  addImportModule(new TheBatImportData(this));
111
114
#endif
112
115
 
 
116
  addImportModule(new BalsaImportData(this));
 
117
  addImportModule(new ClawsMailImportData(this));
 
118
 
113
119
  // Disable the 'next button to begin with.
114
120
  setValid( currentPage(), false );
115
121