summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/winpopup/wpcontact.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/winpopup/wpcontact.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-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/winpopup/wpcontact.h')
-rw-r--r--kopete/protocols/winpopup/wpcontact.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kopete/protocols/winpopup/wpcontact.h b/kopete/protocols/winpopup/wpcontact.h
index 343e07f7..d3e13251 100644
--- a/kopete/protocols/winpopup/wpcontact.h
+++ b/kopete/protocols/winpopup/wpcontact.h
@@ -22,11 +22,11 @@
#include <kaction.h>
// Qt Includes
-//#include <qvaluestack.h>
-#include <qdatetime.h>
-#include <qptrlist.h>
-#include <qtimer.h>
-#include <qstringlist.h>
+//#include <tqvaluestack.h>
+#include <tqdatetime.h>
+#include <tqptrlist.h>
+#include <tqtimer.h>
+#include <tqstringlist.h>
// Kopete Includes
#include "kopetecontact.h"
@@ -51,18 +51,18 @@ class WPContact: public Kopete::Contact
Q_OBJECT
public:
- WPContact(Kopete::Account *account, const QString &userId, const QString &fullName, Kopete::MetaContact *metaContact);
+ WPContact(Kopete::Account *account, const TQString &userId, const TQString &fullName, Kopete::MetaContact *metaContact);
// virtual bool isOnline() const;
virtual bool isReachable();
- virtual QPtrList<KAction> *customContextMenuActions();
+ virtual TQPtrList<KAction> *customContextMenuActions();
virtual Kopete::ChatSession *manager(Kopete::Contact::CanCreateFlags = Kopete::Contact::CannotCreate);
- virtual void serialize(QMap<QString, QString> &serializedData, QMap<QString, QString> &addressBookData);
+ virtual void serialize(TQMap<TQString, TQString> &serializedData, TQMap<TQString, TQString> &addressBookData);
public slots:
virtual void slotUserInfo();
void slotCheckStatus(); // the call back for the checkStatus timer
- void slotNewMessage(const QString &Body, const QDateTime &Arrival);
+ void slotNewMessage(const TQString &Body, const TQDateTime &Arrival);
private slots:
void slotChatSessionDestroyed();
@@ -72,7 +72,7 @@ private slots:
private:
bool myWasConnected; // true if protocol connected at last check
- QTimer checkStatus; // checks the status of this contact every second or so
+ TQTimer checkStatus; // checks the status of this contact every second or so
// KActionCollection *myActionCollection;
// holds all the protocol specific actions (not many!)
Kopete::ChatSession *m_manager;