author | zecke <zecke> | 2002-06-25 21:23:27 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-06-25 21:23:27 (UTC) |
commit | 54188f54767a7057ace4e068378e1155e003c94f (patch) (unidiff) | |
tree | ae6286cdec3f5ba34043803dc38d75fd8a923a11 | |
parent | 27d9215054a51c1d605e0f4e77abcee3c96e8270 (diff) | |
download | opie-54188f54767a7057ace4e068378e1155e003c94f.zip opie-54188f54767a7057ace4e068378e1155e003c94f.tar.gz opie-54188f54767a7057ace4e068378e1155e003c94f.tar.bz2 |
workarounf gcc2 toolchain bugs with the linker
-rw-r--r-- | noncore/net/opietooth/manager/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/opietooth/manager/main.cpp b/noncore/net/opietooth/manager/main.cpp index a86e36d..d60ef1c 100644 --- a/noncore/net/opietooth/manager/main.cpp +++ b/noncore/net/opietooth/manager/main.cpp | |||
@@ -1,38 +1,38 @@ | |||
1 | /* | 1 | /* |
2 | * main.cpp | 2 | * main.cpp |
3 | * | 3 | * |
4 | * --------------------- | 4 | * --------------------- |
5 | * | 5 | * |
6 | * begin : Sun 10 17:20:00 CEST 2002 | 6 | * begin : Sun 10 17:20:00 CEST 2002 |
7 | * copyright : (c) 2002 by Maximilian Reiß | 7 | * copyright : (c) 2002 by Maximilian Reiß |
8 | * email : max.reiss@gmx.de | 8 | * email : max.reiss@gmx.de |
9 | * | 9 | * |
10 | */ | 10 | */ |
11 | /*************************************************************************** | 11 | /*************************************************************************** |
12 | * * | 12 | * * |
13 | * This program is free software; you can redistribute it and/or modify * | 13 | * This program is free software; you can redistribute it and/or modify * |
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 "bluebase.h" | 20 | #include "bluebase.h" |
21 | #include <qpe/qpeapplication.h> | 21 | #include <qpe/qpeapplication.h> |
22 | 22 | ||
23 | 23 | ||
24 | QPEApplication *BluetoothApp; | 24 | QPEApplication *BluetoothApp; |
25 | 25 | ||
26 | int main( int argc, char ** argv ) { | 26 | int main( int argc, char ** argv ) { |
27 | QPEApplication a(argc, argv); | 27 | QPEApplication a(argc, argv); |
28 | BluetoothApp=&a; | 28 | BluetoothApp=&a; |
29 | 29 | ||
30 | OpieTooth::BlueBase t; | 30 | OpieTooth::BlueBase *t = new OpieTooth::BlueBase(); |
31 | 31 | ||
32 | // t.setCaption( OpieTooth::BlueBase::tr("Bluetooth Manager") ); | 32 | // t.setCaption( OpieTooth::BlueBase::tr("Bluetooth Manager") ); |
33 | a.showMainWidget(&t); | 33 | a.showMainWidget(t); |
34 | 34 | ||
35 | return a.exec(); | 35 | return a.exec(); |
36 | } | 36 | } |
37 | 37 | ||
38 | 38 | ||