From 94a385f5f6868e930361dc8d25d3e87eacd20feb Mon Sep 17 00:00:00 2001 From: harlekin Date: Thu, 06 Mar 2003 22:32:09 +0000 Subject: dont show the Connections: from the hcitool output --- (limited to 'noncore') 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 @@ -266,7 +266,7 @@ void Manager::slotConnectionExited( OProcess* proc ) { emit connections(list ); delete proc; } -void Manager::slotConnectionOutput(OProcess* proc, char* cha, int len) { +void Manager::slotConnectionOutput(OProcess* /*proc*/, char* cha, int len) { QCString str(cha, len ); m_hcitoolCon.append( str ); //delete proc; @@ -275,7 +275,10 @@ ConnectionState::ValueList Manager::parseConnections( const QString& out ) { ConnectionState::ValueList list2; QStringList list = QStringList::split('\n', out ); QStringList::Iterator it; - for (it = list.begin(); it != list.end(); ++it ) { + // remove the first line ( "Connections:") + it = list.begin(); + it = list.remove( it ); + for (; it != list.end(); ++it ) { QString row = (*it).stripWhiteSpace(); QStringList value = QStringList::split(' ', row ); qWarning("0: %s", value[0].latin1() ); -- cgit v0.9.0.2