summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/manufacturers.cpp
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/manufacturers.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/manufacturers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/wellenreiter/gui/manufacturers.cpp b/noncore/net/wellenreiter/gui/manufacturers.cpp
index dad2753..f9f8967 100644
--- a/noncore/net/wellenreiter/gui/manufacturers.cpp
+++ b/noncore/net/wellenreiter/gui/manufacturers.cpp
@@ -38,13 +38,13 @@ ManufacturerDB::ManufacturerDB( const QString& filename )
38 while (!s.atEnd()) 38 while (!s.atEnd())
39 { 39 {
40 s >> addr; 40 s >> addr;
41 s.skipWhiteSpace(); 41 s.skipWhiteSpace();
42 manu = s.readLine(); 42 manu = s.readLine();
43 #ifdef DEBUG 43 #ifdef DEBUG
44 qDebug( "ManufacturerDB: read pair %s, %s", (const char*) addr, (const char*) manu ); 44 //qDebug( "ManufacturerDB: read pair %s, %s", (const char*) addr, (const char*) manu );
45 #endif 45 #endif
46 manufacturers.insert( addr, manu ); 46 manufacturers.insert( addr, manu );
47 47
48 } 48 }
49 } 49 }
50 50