summaryrefslogtreecommitdiffstats
path: root/kdesu/kcookie.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdesu/kcookie.cpp')
-rw-r--r--kdesu/kcookie.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kdesu/kcookie.cpp b/kdesu/kcookie.cpp
index 60ddcfe3e..f60ec7314 100644
--- a/kdesu/kcookie.cpp
+++ b/kdesu/kcookie.cpp
@@ -54,7 +54,7 @@ QCStringList KCookie::split(const TQCString &line, char ch)
QCStringList result;
int i=0, pos;
- while ((pos = line.tqfind(ch, i)) != -1)
+ while ((pos = line.find(ch, i)) != -1)
{
result += line.mid(i, pos-i);
i = pos+1;