diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-22 00:30:31 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-22 00:30:31 +0000 |
commit | 69cac65817d949cda2672ec4f0aa73d5e66a0ba1 (patch) | |
tree | 073fde0496ea90eb5bf5cffe66a8da43a9f55fbc /ksirc/ioNotify.cpp | |
parent | 3467e6464beac3a162839bf7078e22e3a74d73e7 (diff) | |
download | tdenetwork-69cac65817d949cda2672ec4f0aa73d5e66a0ba1.tar.gz tdenetwork-69cac65817d949cda2672ec4f0aa73d5e66a0ba1.zip |
TQt4 port kdenetwork
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1237912 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/ioNotify.cpp')
-rw-r--r-- | ksirc/ioNotify.cpp | 12 |
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; |