summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/main.cpp
authorzecke <zecke>2002-06-25 21:23:27 (UTC)
committer zecke <zecke>2002-06-25 21:23:27 (UTC)
commit54188f54767a7057ace4e068378e1155e003c94f (patch) (unidiff)
treeae6286cdec3f5ba34043803dc38d75fd8a923a11 /noncore/net/opietooth/manager/main.cpp
parent27d9215054a51c1d605e0f4e77abcee3c96e8270 (diff)
downloadopie-54188f54767a7057ace4e068378e1155e003c94f.zip
opie-54188f54767a7057ace4e068378e1155e003c94f.tar.gz
opie-54188f54767a7057ace4e068378e1155e003c94f.tar.bz2
workarounf gcc2 toolchain bugs with the linker
Diffstat (limited to 'noncore/net/opietooth/manager/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/main.cpp4
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
@@ -27,10 +27,10 @@ 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}