diff options
Diffstat (limited to 'ksirc/ioNotify.cpp')
-rw-r--r-- | ksirc/ioNotify.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ksirc/ioNotify.cpp b/ksirc/ioNotify.cpp index 14c6e9e8..b3b4a52f 100644 --- a/ksirc/ioNotify.cpp +++ b/ksirc/ioNotify.cpp @@ -12,7 +12,7 @@ #include <kdebug.h> KSircIONotify::KSircIONotify(KSircProcess *_proc) - : QObject(), + : TQObject(), KSircMessageReceiver(_proc) { proc = _proc; @@ -24,7 +24,7 @@ KSircIONotify::~KSircIONotify() { } -void KSircIONotify::sirc_receive(QCString str, bool) +void KSircIONotify::sirc_receive(TQCString str, bool) { if(str.contains("*)*")){ int s1, s2; @@ -34,7 +34,7 @@ void KSircIONotify::sirc_receive(QCString str, bool) kdDebug(5008) << "Nick Notify mesage broken: " << str << endl; return; } - QString nick = str.mid(s1, s2 - s1); + TQString nick = str.mid(s1, s2 - s1); emit notify_online(nick); } else if(str.contains("*(*")){ @@ -45,7 +45,7 @@ void KSircIONotify::sirc_receive(QCString str, bool) kdDebug(5008) << "Nick Notify mesage broken: " << str << endl; return; } - QString nick = str.mid(s1, s2 - s1); + TQString nick = str.mid(s1, s2 - s1); emit notify_offline(nick); } else{ @@ -54,7 +54,7 @@ void KSircIONotify::sirc_receive(QCString str, bool) } } -void KSircIONotify::control_message(int, QString) +void KSircIONotify::control_message(int, TQString) { } |