summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/cron
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit3021c04cf6aec08eb598251248da3e1d97d87fb2 (patch)
treefae2bb2c6dae4e3232795251b40348e4cb123154 /ksystemlog/src/cron
parent255b65585bec03c1f74ba0448aad6e5e1e303761 (diff)
downloadksystemlog-3021c04cf6aec08eb598251248da3e1d97d87fb2.tar.gz
ksystemlog-3021c04cf6aec08eb598251248da3e1d97d87fb2.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ksystemlog@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksystemlog/src/cron')
-rw-r--r--ksystemlog/src/cron/cronReader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksystemlog/src/cron/cronReader.cpp b/ksystemlog/src/cron/cronReader.cpp
index a9d8294..131c1ff 100644
--- a/ksystemlog/src/cron/cronReader.cpp
+++ b/ksystemlog/src/cron/cronReader.cpp
@@ -59,8 +59,8 @@ LogLine* CronReader::parseMessage(TQString& line, LogFile* logFile) {
TQString message=list.back();
list.pop_back();
- int leftBracket=message.tqfind('(');
- int rightBracket=message.tqfind(')');
+ int leftBracket=message.find('(');
+ int rightBracket=message.find(')');
TQString user=message.mid(leftBracket+1, rightBracket-leftBracket-1);