diff options
Diffstat (limited to 'ksirc/ioLAG.cpp')
-rw-r--r-- | ksirc/ioLAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksirc/ioLAG.cpp b/ksirc/ioLAG.cpp index ee79094d..0a1a2ec7 100644 --- a/ksirc/ioLAG.cpp +++ b/ksirc/ioLAG.cpp @@ -32,9 +32,9 @@ KSircIOLAG::~KSircIOLAG() void KSircIOLAG::sirc_receive(TQCString str, bool) { - if(str.tqcontains("*L*")){ + if(str.contains("*L*")){ int s1, s2; - s1 = str.tqfind("*L* ") + 4; + s1 = str.find("*L* ") + 4; s2 = str.length(); if(s1 < 0 || s2 < 0){ kdDebug(5008) << "Lag mesage broken: " << str << endl; |