diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
commit | 47c8a359c5276062c4bc17f0e82410f29081b502 (patch) | |
tree | 2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/irc/ircservercontact.h | |
parent | 6f82532777a35e0e60bbd2b290b2e93e646f349b (diff) | |
download | tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/irc/ircservercontact.h')
-rw-r--r-- | kopete/protocols/irc/ircservercontact.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kopete/protocols/irc/ircservercontact.h b/kopete/protocols/irc/ircservercontact.h index 1ca1475b..4d9e378d 100644 --- a/kopete/protocols/irc/ircservercontact.h +++ b/kopete/protocols/irc/ircservercontact.h @@ -24,8 +24,8 @@ #include "kopetechatsessionmanager.h" -#include <qvaluelist.h> -#include <qstringlist.h> +#include <tqvaluelist.h> +#include <tqstringlist.h> class KActionCollection; class KAction; @@ -48,12 +48,12 @@ class IRCServerContact public: // This class provides a Kopete::Contact for each server of a given IRC connection. - IRCServerContact(IRCContactManager *, const QString &servername, Kopete::MetaContact *mc); + IRCServerContact(IRCContactManager *, const TQString &servername, Kopete::MetaContact *mc); - virtual const QString caption() const; + virtual const TQString caption() const; virtual void appendMessage(Kopete::Message &); - void appendMessage( const QString &message ); + void appendMessage( const TQString &message ); protected slots: void engineInternalError(KIRC::Engine::Error error, KIRC::Message &ircmsg); @@ -64,14 +64,14 @@ class IRCServerContact void slotViewCreated( KopeteView* ); void slotDumpMessages(); - void slotIncomingUnknown( const QString &message ); - void slotIncomingConnect( const QString &message ); - void slotIncomingMotd( const QString &motd ); - void slotIncomingNotice( const QString &orig, const QString ¬ice ); - void slotCannotSendToChannel( const QString &channel, const QString &msg ); + void slotIncomingUnknown( const TQString &message ); + void slotIncomingConnect( const TQString &message ); + void slotIncomingMotd( const TQString &motd ); + void slotIncomingNotice( const TQString &orig, const TQString ¬ice ); + void slotCannotSendToChannel( const TQString &channel, const TQString &msg ); private: - QValueList<Kopete::Message> mMsgBuffer; + TQValueList<Kopete::Message> mMsgBuffer; }; #endif |