diff options
Diffstat (limited to 'kstartperf/kstartperf.cpp')
-rw-r--r-- | kstartperf/kstartperf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kstartperf/kstartperf.cpp b/kstartperf/kstartperf.cpp index eb5152ca..ca8dfcec 100644 --- a/kstartperf/kstartperf.cpp +++ b/kstartperf/kstartperf.cpp @@ -54,7 +54,7 @@ TQString libkstartperf() if (line.left(15) == "library_names='") { lib = line.mid(15); - int pos = lib.tqfind(" "); + int pos = lib.find(" "); if (pos > 0) lib = lib.left(pos); } |