summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/main.cpp
authorharlekin <harlekin>2002-06-02 20:47:02 (UTC)
committer harlekin <harlekin>2002-06-02 20:47:02 (UTC)
commit6898878a1ef6d5551d7dde9363f238e57b5c9671 (patch) (unidiff)
tree1dbad715e49c72e5552c532b71e077a70b6f14fa /noncore/net/opietooth/manager/main.cpp
parent7202b34a7a9b5e9b3c5ac12b02b1ba654051ea2a (diff)
downloadopie-6898878a1ef6d5551d7dde9363f238e57b5c9671.zip
opie-6898878a1ef6d5551d7dde9363f238e57b5c9671.tar.gz
opie-6898878a1ef6d5551d7dde9363f238e57b5c9671.tar.bz2
update
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