~ubuntu-branches/ubuntu/raring/kdebluetooth/raring

« back to all changes in this revision

Viewing changes to src/inputwizard/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-09-29 09:38:35 UTC
  • mfrom: (1.2.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20090929093835-9r3zkwijawh2m4qy
Tags: 1:0.4~rc1-0ubuntu1
* New upstream release:
  - Fixes device manager to make it simply usable
* Added kubuntu_01_document_path.diff:
  - Avoids nasty prompt at first run and instead set the default
    download path to "XDG Documents" dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include "wizarddialog.h"
21
21
 
22
 
#include <QApplication>
 
22
#include <KApplication>
23
23
#include <QDebug>
24
24
 
25
25
#include <kcomponentdata.h>
40
40
                                KAboutData::License_GPL,
41
41
                                ki18n("(c) 2008-2009, The KBluetooth Developers")
42
42
                                );
43
 
        aboutData.addAuthor(ki18n("Alex Fiestas"), ki18n("Mantainer"), "alex@eyeos.org", "http://www.afiestas.org/");
 
43
        aboutData.addAuthor(ki18n("Alex Fiestas"), ki18n("Maintainer"), "alex@eyeos.org", "http://www.afiestas.org/");
44
44
        aboutData.addAuthor(ki18n("Tom Patzig"), ki18n("Former Developer"), "tpatzig@suse.de", "http://www.kde.org/");
45
45
 
46
46
        qDebug() << "Bluetooth Adapters";
47
 
        KComponentData component(&aboutData);
48
47
 
49
48
        //KCmdLineArgs::init( argc, argv, &aboutData );
50
49
        //KUniqueApplication::addCmdLineOptions();
55
54
                return 0;
56
55
        }
57
56
 
58
 
        QApplication a(argc,argv);
 
57
        KCmdLineArgs::init(argc, argv, &aboutData);
 
58
        KApplication a;
59
59
 
60
60
        a.setQuitOnLastWindowClosed( true );
61
61