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/jabber/jabbercontact.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/jabber/jabbercontact.h')
-rw-r--r-- | kopete/protocols/jabber/jabbercontact.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/protocols/jabber/jabbercontact.h b/kopete/protocols/jabber/jabbercontact.h index a7a3b024..64402a48 100644 --- a/kopete/protocols/jabber/jabbercontact.h +++ b/kopete/protocols/jabber/jabbercontact.h @@ -38,7 +38,7 @@ Q_OBJECT public: JabberContact (const XMPP::RosterItem &rosterItem, - Kopete::Account *account, Kopete::MetaContact * mc, const QString &legacyId = QString()); + Kopete::Account *account, Kopete::MetaContact * mc, const TQString &legacyId = TQString()); ~JabberContact(); @@ -46,12 +46,12 @@ public: * Create custom context menu items for the contact * FIXME: implement manager version here? */ - QPtrList<KAction> *customContextMenuActions (); + TQPtrList<KAction> *customContextMenuActions (); /** * Start a rename request. */ - void rename ( const QString &newName ); + void rename ( const TQString &newName ); /** * Deal with an incoming message for this contact. @@ -69,7 +69,7 @@ public: bool isContactRequestingEvent( XMPP::MsgEvent event ); - QString lastReceivedMessageId () const; + TQString lastReceivedMessageId () const; public slots: @@ -95,7 +95,7 @@ public slots: * a nondeterminate file size (such as over a socket) */ virtual void sendFile( const KURL &sourceURL = KURL(), - const QString &fileName = QString::null, uint fileSize = 0L ); + const TQString &fileName = TQString::null, uint fileSize = 0L ); /** * Update the vCard on the server. @@ -107,7 +107,7 @@ public slots: * Set contact photo. * @param path Path to the photo. */ - void setPhoto(const QString &photoPath); + void setPhoto(const TQString &photoPath); /** * this will start a voice call to the contact @@ -146,7 +146,7 @@ private slots: */ void slotSelectResource (); - void slotChatSessionDeleted ( QObject *sender ); + void slotChatSessionDeleted ( TQObject *sender ); /** * Check if cached vCard is recent. @@ -209,7 +209,7 @@ private: * the manager. If a new manager is created, the given * resource is preselected. */ - JabberChatSession *manager ( const QString &resource, Kopete::Contact::CanCreateFlags ); + JabberChatSession *manager ( const TQString &resource, Kopete::Contact::CanCreateFlags ); /** * Create a message manager for this contact. @@ -222,7 +222,7 @@ private: /** * Sends subscription messages. */ - void sendSubscription (const QString& subType); + void sendSubscription (const TQString& subType); /** * Sends a presence packet to this contact @@ -240,7 +240,7 @@ private: * The casts in manager() and slotChatSessionDeleted() * are thus legal. */ - QPtrList<JabberChatSession> mManagers; + TQPtrList<JabberChatSession> mManagers; /** * Indicates whether the vCard is currently @@ -258,8 +258,8 @@ private: */ bool mDiscoDone :1; - QString mLastReceivedMessageId; - QTimer *m_syncTimer; + TQString mLastReceivedMessageId; + TQTimer *m_syncTimer; }; |