author | harlekin <harlekin> | 2003-03-06 22:32:09 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-03-06 22:32:09 (UTC) |
commit | 94a385f5f6868e930361dc8d25d3e87eacd20feb (patch) (unidiff) | |
tree | 5dd0eb454abbac301547b6784436c5a709a9b264 | |
parent | e2165a29b9fc618037295fc7515e0364b9a3da4f (diff) | |
download | opie-94a385f5f6868e930361dc8d25d3e87eacd20feb.zip opie-94a385f5f6868e930361dc8d25d3e87eacd20feb.tar.gz opie-94a385f5f6868e930361dc8d25d3e87eacd20feb.tar.bz2 |
dont show the Connections: from the hcitool output
-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 | |||
@@ -265,18 +265,21 @@ void Manager::slotConnectionExited( OProcess* proc ) { | |||
265 | list = parseConnections( m_hcitoolCon ); | 265 | list = parseConnections( m_hcitoolCon ); |
266 | emit connections(list ); | 266 | emit connections(list ); |
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 ); |
272 | //delete proc; | 272 | //delete proc; |
273 | } | 273 | } |
274 | ConnectionState::ValueList Manager::parseConnections( const QString& out ) { | 274 | ConnectionState::ValueList Manager::parseConnections( const QString& out ) { |
275 | ConnectionState::ValueList list2; | 275 | ConnectionState::ValueList list2; |
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 ); |
281 | qWarning("0: %s", value[0].latin1() ); | 284 | qWarning("0: %s", value[0].latin1() ); |
282 | qWarning("1: %s", value[1].latin1() ); | 285 | qWarning("1: %s", value[1].latin1() ); |