~ubuntu-branches/ubuntu/natty/kdebase-runtime/natty-updates

« back to all changes in this revision

Viewing changes to nepomuk/services/backupsync/gui/backupwizard.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer, Jonathan Riddell, Felix Geyer
  • Date: 2011-01-24 12:45:27 UTC
  • mfrom: (1.1.50 upstream)
  • Revision ID: james.westby@ubuntu.com-20110124124527-yx5u4oxt5pq1k728
Tags: 4:4.6.0-0ubuntu1
[ Jonathan Riddell ]
* New upstream release

[ Felix Geyer ]
* Prefer phonon-backend-gstreamer over phonon-backend-xine.
  - Make kdebase-runtime depend on phonon-backend-gstreamer | phonon-backend.
* Refresh and re-enable kubuntu_85_language_selector.diff. (LP: #683435)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "backupwizard.h"
24
24
#include "backupwizardpages.h"
25
25
 
 
26
#include <kglobal.h>
 
27
#include <kcomponentdata.h>
 
28
#include <kaboutdata.h>
 
29
 
 
30
// TODO: 1. "Cancel" just closes the dialog without any feedback on the backup
 
31
//       2. If the service crashes the dialog does not notice
 
32
 
26
33
Nepomuk::BackupWizard::BackupWizard(QWidget* parent, Qt::WindowFlags flags)
27
34
    : QWizard(parent, flags)
28
35
{
29
36
    setPixmap(LogoPixmap, KIcon(QLatin1String("nepomuk")).pixmap(32, 32));
30
37
    setWindowIcon( KIcon(QLatin1String("nepomuk")) );
31
 
    
 
38
    setWindowTitle( KGlobal::activeComponent().aboutData()->shortDescription() );
 
39
 
32
40
    setPage( Id_IntroPage, new IntroPage(this) );
33
41
    setPage( Id_BackupPage, new BackupPage(this) );
34
42
    setPage( Id_BackupSettingsPage, new BackupSettingsPage(this) );