summaryrefslogtreecommitdiffstats
path: root/ksirc/ioNotify.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ksirc/ioNotify.cpp')
-rw-r--r--ksirc/ioNotify.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ksirc/ioNotify.cpp b/ksirc/ioNotify.cpp
index b3b4a52f..c590c180 100644
--- a/ksirc/ioNotify.cpp
+++ b/ksirc/ioNotify.cpp
@@ -26,10 +26,10 @@ KSircIONotify::~KSircIONotify()
void KSircIONotify::sirc_receive(TQCString str, bool)
{
- if(str.contains("*)*")){
+ if(str.tqcontains("*)*")){
int s1, s2;
- s1 = str.find("Signon by") + 10;
- s2 = str.find(" ", s1);
+ s1 = str.tqfind("Signon by") + 10;
+ s2 = str.tqfind(" ", s1);
if(s1 < 0 || s2 < 0){
kdDebug(5008) << "Nick Notify mesage broken: " << str << endl;
return;
@@ -37,10 +37,10 @@ void KSircIONotify::sirc_receive(TQCString str, bool)
TQString nick = str.mid(s1, s2 - s1);
emit notify_online(nick);
}
- else if(str.contains("*(*")){
+ else if(str.tqcontains("*(*")){
int s1, s2;
- s1 = str.find("Signoff by") + 11;
- s2 = str.find(" ", s1);
+ s1 = str.tqfind("Signoff by") + 11;
+ s2 = str.tqfind(" ", s1);
if(s1 < 0 || s2 < 0){
kdDebug(5008) << "Nick Notify mesage broken: " << str << endl;
return;