summaryrefslogtreecommitdiffstats
path: root/ksirc/iocontroller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksirc/iocontroller.cpp')
-rw-r--r--ksirc/iocontroller.cpp6
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();