summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/bluebase.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/bluebase.cpp
parent35d0ca5cc59b82af7b7ddb343ec092c3171b11ef (diff)
downloadopie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.zip
opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.tar.gz
opie-7d82c654e6a1df83f70b2d81aa05a1175799b66b.tar.bz2
API clean ups
Diffstat (limited to 'noncore/net/opietooth/manager/bluebase.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp
index ff6981b..8ddc161 100644
--- a/noncore/net/opietooth/manager/bluebase.cpp
+++ b/noncore/net/opietooth/manager/bluebase.cpp
@@ -432,9 +432,10 @@ void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & poin
432 * Open the "scan for devices" dialog 432 * Open the "scan for devices" dialog
433 */ 433 */
434 void BlueBase::startScan() { 434 void BlueBase::startScan() {
435 ScanDialog *scan = new ScanDialog( this, "", true); 435 ScanDialog *scan = new ScanDialog( this, "ScanDialog",
436 QObject::connect( scan, SIGNAL( selectedDevices( QList<RemoteDevice>& ) ), 436 true, WDestructiveClose );
437 this, SLOT( addSearchedDevices( QList<RemoteDevice>& ) ) ); 437 QObject::connect( scan, SIGNAL( selectedDevices( QValueList<RemoteDevice>& ) ),
438 this, SLOT( addSearchedDevices( QValueList<RemoteDevice>& ) ) );
438 439
439 scan->showMaximized(); 440 scan->showMaximized();
440 } 441 }