-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index f400ce6..433bd3a 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp | |||
@@ -251,32 +251,33 @@ void BlueBase::applyConfigChanges() { | |||
251 | } | 251 | } |
252 | 252 | ||
253 | /** | 253 | /** |
254 | * Add fresh found devices from scan dialog to the listing | 254 | * Add fresh found devices from scan dialog to the listing |
255 | * | 255 | * |
256 | */ | 256 | */ |
257 | void BlueBase::addSearchedDevices( const QValueList<RemoteDevice> &newDevices ) { | 257 | void BlueBase::addSearchedDevices( const QValueList<RemoteDevice> &newDevices ) { |
258 | BTDeviceItem * deviceItem; | 258 | BTDeviceItem * deviceItem; |
259 | QValueList<RemoteDevice>::ConstIterator it; | 259 | QValueList<RemoteDevice>::ConstIterator it; |
260 | 260 | ||
261 | for( it = newDevices.begin(); it != newDevices.end() ; ++it ) { | 261 | for( it = newDevices.begin(); it != newDevices.end() ; ++it ) { |
262 | 262 | ||
263 | if (find( (*it) )) // is already inserted | 263 | if (find( (*it) )) // is already inserted |
264 | continue; | 264 | continue; |
265 | 265 | ||
266 | deviceItem = new BTDeviceItem( ListView2 , (*it) ); | 266 | deviceItem = new BTDeviceItem( ListView2 , (*it) ); |
267 | deviceItem->setPixmap( 1, m_findPix ); | ||
267 | deviceItem->setExpandable ( true ); | 268 | deviceItem->setExpandable ( true ); |
268 | 269 | ||
269 | // look if device is avail. atm, async | 270 | // look if device is avail. atm, async |
270 | deviceActive( (*it) ); | 271 | deviceActive( (*it) ); |
271 | 272 | ||
272 | // ggf auch hier? | 273 | // ggf auch hier? |
273 | addServicesToDevice( deviceItem ); | 274 | addServicesToDevice( deviceItem ); |
274 | } | 275 | } |
275 | } | 276 | } |
276 | 277 | ||
277 | 278 | ||
278 | /** | 279 | /** |
279 | * Action that is toggled on entrys on click | 280 | * Action that is toggled on entrys on click |
280 | */ | 281 | */ |
281 | void BlueBase::startServiceActionClicked( QListViewItem */*item*/ ) { | 282 | void BlueBase::startServiceActionClicked( QListViewItem */*item*/ ) { |
282 | } | 283 | } |