summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/main.cpp
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/main.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/noncore/net/opietooth/manager/main.cpp b/noncore/net/opietooth/manager/main.cpp
index c7ccf23..d566419 100644
--- a/noncore/net/opietooth/manager/main.cpp
+++ b/noncore/net/opietooth/manager/main.cpp
@@ -14,23 +14,23 @@
14 * it under the terms of the GNU General Public License as published by * 14 * it under the terms of the GNU General Public License as published by *
15 * the Free Software Foundation; either version 2 of the License, or * 15 * the Free Software Foundation; either version 2 of the License, or *
16 * (at your option) any later version. * 16 * (at your option) any later version. *
17 * * 17 * *
18 ***************************************************************************/ 18 ***************************************************************************/
19 19
20#include "bluemanager.h" 20#include "bluebase.h"
21#include <qpe/qpeapplication.h> 21#include <qpe/qpeapplication.h>
22 22
23QPEApplication *BluetoothApp; 23QPEApplication *BluetoothApp;
24 24
25int main( int argc, char ** argv ) 25int main( int argc, char ** argv ) {
26{ 26 QPEApplication a(argc, argv);
27 QPEApplication a(argc, argv); 27 BluetoothApp=&a;
28 BluetoothApp=&a;
29 28
30 BlueManager t; 29 BlueBase t;
31 30
32 t.setCaption( BlueManager::tr("Bluetooth Manager") ); 31 t.setCaption( BlueBase::tr("Bluetooth Manager") );
33 a.showMainWidget(&t); 32 a.showMainWidget(&t);
34 33
35 return a.exec(); 34 return a.exec();
36} 35}
36