summaryrefslogtreecommitdiffstats
path: root/ksirc/ioNotify.cpp
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
commit937b2991d8e78166eea904c80ad04d34607017a4 (patch)
tree2accb8161eab09df5d7a5484ea9ea080ad123168 /ksirc/ioNotify.cpp
parentdba26cb985af370c33d1767037851705cc561726 (diff)
downloadtdenetwork-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/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 c590c180..b3b4a52f 100644
--- a/ksirc/ioNotify.cpp
+++ b/ksirc/ioNotify.cpp
@@ -26,10 +26,10 @@ KSircIONotify::~KSircIONotify()
void KSircIONotify::sirc_receive(TQCString str, bool)
{
- if(str.tqcontains("*)*")){
+ if(str.contains("*)*")){
int s1, s2;
- s1 = str.tqfind("Signon by") + 10;
- s2 = str.tqfind(" ", s1);
+ s1 = str.find("Signon by") + 10;
+ s2 = str.find(" ", 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.tqcontains("*(*")){
+ else if(str.contains("*(*")){
int s1, s2;
- s1 = str.tqfind("Signoff by") + 11;
- s2 = str.tqfind(" ", s1);
+ s1 = str.find("Signoff by") + 11;
+ s2 = str.find(" ", s1);
if(s1 < 0 || s2 < 0){
kdDebug(5008) << "Nick Notify mesage broken: " << str << endl;
return;