summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/main.cpp
authorzecke <zecke>2002-07-08 18:46:40 (UTC)
committer zecke <zecke>2002-07-08 18:46:40 (UTC)
commit7d82c654e6a1df83f70b2d81aa05a1175799b66b (patch) (unidiff)
tree079e87ac4dcd96c304a4e8eb7f928194fffe63f1 /noncore/net/opietooth/manager/main.cpp
parent35d0ca5cc59b82af7b7ddb343ec092c3171b11ef (diff)
downloadopie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.zip
opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.tar.gz
opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.tar.bz2
API clean ups
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 d60ef1c..a86e36d 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 = new OpieTooth::BlueBase(); 30 OpieTooth::BlueBase t;
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}