-rw-r--r-- | noncore/net/opietooth/lib/manager.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/noncore/net/opietooth/lib/manager.cc b/noncore/net/opietooth/lib/manager.cc index 59ade6d..8ddcfe8 100644 --- a/noncore/net/opietooth/lib/manager.cc +++ b/noncore/net/opietooth/lib/manager.cc | |||
@@ -267,5 +267,5 @@ void Manager::slotConnectionExited( OProcess* proc ) { | |||
267 | delete proc; | 267 | delete proc; |
268 | } | 268 | } |
269 | void Manager::slotConnectionOutput(OProcess* proc, char* cha, int len) { | 269 | void Manager::slotConnectionOutput(OProcess* /*proc*/, char* cha, int len) { |
270 | QCString str(cha, len ); | 270 | QCString str(cha, len ); |
271 | m_hcitoolCon.append( str ); | 271 | m_hcitoolCon.append( str ); |
@@ -276,5 +276,8 @@ ConnectionState::ValueList Manager::parseConnections( const QString& out ) { | |||
276 | QStringList list = QStringList::split('\n', out ); | 276 | QStringList list = QStringList::split('\n', out ); |
277 | QStringList::Iterator it; | 277 | QStringList::Iterator it; |
278 | for (it = list.begin(); it != list.end(); ++it ) { | 278 | // remove the first line ( "Connections:") |
279 | it = list.begin(); | ||
280 | it = list.remove( it ); | ||
281 | for (; it != list.end(); ++it ) { | ||
279 | QString row = (*it).stripWhiteSpace(); | 282 | QString row = (*it).stripWhiteSpace(); |
280 | QStringList value = QStringList::split(' ', row ); | 283 | QStringList value = QStringList::split(' ', row ); |