author | harlekin <harlekin> | 2002-07-20 20:45:08 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-07-20 20:45:08 (UTC) |
commit | 0f24c1fb86d3bb58d8696358b824c0e01752b10d (patch) (side-by-side diff) | |
tree | 646c57bf8f5b903cd951aac9287c7703d0af4d4d | |
parent | f095be190be0bcacd7911c585d034fd031e16099 (diff) | |
download | opie-0f24c1fb86d3bb58d8696358b824c0e01752b10d.zip opie-0f24c1fb86d3bb58d8696358b824c0e01752b10d.tar.gz opie-0f24c1fb86d3bb58d8696358b824c0e01752b10d.tar.bz2 |
little update
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index d2854a1..af64663 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp @@ -289,28 +289,34 @@ void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & poin if ( ((BTListItem*)item)->type() == "device") { QPopupMenu *groups = new QPopupMenu(); menu->insertItem( tr("rescan sevices:"), 0); menu->insertItem( tr("to group"), groups , 1); - menu->insertItem( tr("bound device"), 2); + // menu->insertItem( tr("bound device"), 2); menu->insertItem( tr("delete"), 3); ret = menu->exec( point , 0); switch(ret) { case -1: - + break; + case 0: + addServicesToDevice( (BTDeviceItem*)item ); break; case 1: + break; - case 2: + + // NO need to, since hcid does that on the fly + // case 2: // make connection - break; + //m_localDevice->connectTo( ((BTDeviceItem*)item)->mac() ); + //break; case 3: - // delete childs too + // deletes childs too delete item; break; } delete groups; } @@ -406,14 +412,15 @@ void BlueBase::addServicesToDevice( const QString& device, Services::ValueList s QMap<int, QString>::Iterator classIt; for( it2 = servicesList.begin(); it2 != servicesList.end(); ++it2 ) { serviceItem = new BTServiceItem( deviceItem , (*it2) ); list = (*it2).classIdList(); classIt = list.begin(); int classId=0; - if ( classIt != list.end() ) + if ( classIt != list.end() ) { classId = classIt.key(); + } serviceItem->setPixmap( 0, m_iconLoader->serviceIcon( classId ) ); } } else { Services s1; s1.setServiceName( tr("no serives found") ); |