author | harlekin <harlekin> | 2003-03-06 23:17:10 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-03-06 23:17:10 (UTC) |
commit | 78a2773ef477a4ab7327350e5f1f6c07428ad8a4 (patch) (unidiff) | |
tree | d93e516530f66c0b15260c283d21481e92cfeb18 | |
parent | 94a385f5f6868e930361dc8d25d3e87eacd20feb (diff) | |
download | opie-78a2773ef477a4ab7327350e5f1f6c07428ad8a4.zip opie-78a2773ef477a4ab7327350e5f1f6c07428ad8a4.tar.gz opie-78a2773ef477a4ab7327350e5f1f6c07428ad8a4.tar.bz2 |
remove previous found services on rescan
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index 5c5f069..8b15c4f 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp | |||
@@ -43,6 +43,7 @@ | |||
43 | #include <qdir.h> | 43 | #include <qdir.h> |
44 | #include <qpopupmenu.h> | 44 | #include <qpopupmenu.h> |
45 | #include <qtimer.h> | 45 | #include <qtimer.h> |
46 | #include <qlist.h> | ||
46 | 47 | ||
47 | #include <qpe/qpeapplication.h> | 48 | #include <qpe/qpeapplication.h> |
48 | #include <qpe/resource.h> | 49 | #include <qpe/resource.h> |
@@ -385,9 +386,20 @@ void BlueBase::addServicesToDevice( const QString& device, Services::ValueList s | |||
385 | return; | 386 | return; |
386 | deviceItem = it.data(); | 387 | deviceItem = it.data(); |
387 | 388 | ||
389 | // remove previous entries | ||
390 | QList<QListViewItem> tempList; | ||
391 | tempList.setAutoDelete( true ); | ||
392 | QListViewItem * child = deviceItem->firstChild(); | ||
393 | while( child ) { | ||
394 | tempList.append( child ); | ||
395 | child = child->nextSibling(); | ||
396 | } | ||
397 | tempList.clear(); | ||
398 | |||
388 | QValueList<OpieTooth::Services>::Iterator it2; | 399 | QValueList<OpieTooth::Services>::Iterator it2; |
389 | BTServiceItem * serviceItem; | 400 | BTServiceItem * serviceItem; |
390 | 401 | ||
402 | |||
391 | if (!servicesList.isEmpty() ) { | 403 | if (!servicesList.isEmpty() ) { |
392 | // add services | 404 | // add services |
393 | QMap<int, QString> list; | 405 | QMap<int, QString> list; |
@@ -405,7 +417,7 @@ void BlueBase::addServicesToDevice( const QString& device, Services::ValueList s | |||
405 | } | 417 | } |
406 | } else { | 418 | } else { |
407 | Services s1; | 419 | Services s1; |
408 | s1.setServiceName( tr("no serives found") ); | 420 | s1.setServiceName( tr("no services found") ); |
409 | serviceItem = new BTServiceItem( deviceItem, s1 ); | 421 | serviceItem = new BTServiceItem( deviceItem, s1 ); |
410 | } | 422 | } |
411 | // now remove them from the list | 423 | // now remove them from the list |
@@ -446,7 +458,7 @@ void BlueBase::addConnectedDevices( ConnectionState::ValueList connectionList ) | |||
446 | } | 458 | } |
447 | 459 | ||
448 | // recall connection search after some time | 460 | // recall connection search after some time |
449 | QTimer::singleShot( 20000, this, SLOT( addConnectedDevices() ) ); | 461 | QTimer::singleShot( 15000, this, SLOT( addConnectedDevices() ) ); |
450 | } | 462 | } |
451 | 463 | ||
452 | 464 | ||