diff options
Diffstat (limited to 'wifi/kwifimanager.cpp')
-rw-r--r-- | wifi/kwifimanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wifi/kwifimanager.cpp b/wifi/kwifimanager.cpp index 8cc88943..b7d49abb 100644 --- a/wifi/kwifimanager.cpp +++ b/wifi/kwifimanager.cpp @@ -163,9 +163,9 @@ KWiFiManagerApp::init_whois_db () while (datei.readLine (content, 255) != -1) { TQString temp (content); - content.truncate (content.tqfind (' ')); + content.truncate (content.find (' ')); content = content.upper (); - content2 = temp.right (temp.length () - temp.tqfind (' ') - 1); + content2 = temp.right (temp.length () - temp.find (' ') - 1); content2.truncate (content2.length () - 1); APs << content << content2; } |