summaryrefslogtreecommitdiff
path: root/noncore
Side-by-side diff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/manager.cc7
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
@@ -268,3 +268,3 @@ void Manager::slotConnectionExited( OProcess* proc ) {
}
-void Manager::slotConnectionOutput(OProcess* proc, char* cha, int len) {
+void Manager::slotConnectionOutput(OProcess* /*proc*/, char* cha, int len) {
QCString str(cha, len );
@@ -277,3 +277,6 @@ ConnectionState::ValueList Manager::parseConnections( const QString& 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();