-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 @@ -27,10 +27,10 @@ int main( int argc, char ** argv ) { QPEApplication a(argc, argv); BluetoothApp=&a; - OpieTooth::BlueBase t; + OpieTooth::BlueBase *t = new OpieTooth::BlueBase(); // t.setCaption( OpieTooth::BlueBase::tr("Bluetooth Manager") ); - a.showMainWidget(&t); + a.showMainWidget(t); return a.exec(); } |