diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 937b2991d8e78166eea904c80ad04d34607017a4 (patch) | |
tree | 2accb8161eab09df5d7a5484ea9ea080ad123168 /ksirc/iocontroller.cpp | |
parent | dba26cb985af370c33d1767037851705cc561726 (diff) | |
download | tdenetwork-937b2991d8e78166eea904c80ad04d34607017a4.tar.gz tdenetwork-937b2991d8e78166eea904c80ad04d34607017a4.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/iocontroller.cpp')
-rw-r--r-- | ksirc/iocontroller.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksirc/iocontroller.cpp b/ksirc/iocontroller.cpp index e6514537..d63fba7b 100644 --- a/ksirc/iocontroller.cpp +++ b/ksirc/iocontroller.cpp @@ -193,7 +193,7 @@ void KSircIOController::stdout_read(KProcess *, char *_buffer, int buflen) } if(buffer[buffer.length()-1] != '\n'){ - pos = buffer.tqfindRev('\n'); + pos = buffer.findRev('\n'); if(pos != -1){ holder = buffer.right(buffer.length()-(pos+1)); buffer.truncate(pos+1); @@ -222,7 +222,7 @@ void KSircIOController::stdout_read(KProcess *, char *_buffer, int buflen) m_debugLB->setUpdatesEnabled(false); do{ - pos2 = buffer.tqfind('\n', pos); + pos2 = buffer.find('\n', pos); if(pos2 == -1) pos2 = buffer.length(); @@ -236,7 +236,7 @@ void KSircIOController::stdout_read(KProcess *, char *_buffer, int buflen) //kdDebug(5008) << "Line: " << line << endl; if((line.length() > 0) && (line[0] == '~')){ - pos3 = line.tqfind('~', 1); + pos3 = line.find('~', 1); if(pos3 > 1){ name = line.mid(1,pos3-1).lower(); name = name.lower(); |