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/groupwise/gwcontact.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/groupwise/gwcontact.h')
-rw-r--r-- | kopete/protocols/groupwise/gwcontact.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/protocols/groupwise/gwcontact.h b/kopete/protocols/groupwise/gwcontact.h index e5079387..64486e75 100644 --- a/kopete/protocols/groupwise/gwcontact.h +++ b/kopete/protocols/groupwise/gwcontact.h @@ -27,8 +27,8 @@ #ifndef GW_CONTACT_H #define GW_CONTACT_H -#include <qdict.h> -#include <qmap.h> +#include <tqdict.h> +#include <tqmap.h> #include "kopetecontact.h" #include "kopetemessage.h" @@ -63,7 +63,7 @@ public: * @param parentId The ID of this contact's parent (folder). * @param sequence This contact's sequence number (The position it appears in within its parent). */ - GroupWiseContact( Kopete::Account* account, const QString &uniqueName, + GroupWiseContact( Kopete::Account* account, const TQString &uniqueName, Kopete::MetaContact *parent, const int objectId, const int parentId, const int sequence ); @@ -82,7 +82,7 @@ public: /** * Get the contact's DN (used for communications with the server, not the contactId ) */ - QString dn() const; + TQString dn() const; /** * Update the contact's status and metadata from the supplied fields @@ -94,12 +94,12 @@ public: * Serialize the contact's data into a key-value map * suitable for writing to a file */ - virtual void serialize(QMap< QString, QString >& serializedData, - QMap< QString, QString >& addressBookData); + virtual void serialize(TQMap< TQString, TQString >& serializedData, + TQMap< TQString, TQString >& addressBookData); /** * Return the actions for this contact */ - virtual QPtrList<KAction> *customContextMenuActions(); + virtual TQPtrList<KAction> *customContextMenuActions(); /** * Returns a Kopete::ChatSession associated with this contact @@ -109,7 +109,7 @@ public: /** * Access the contact's server properties */ - QMap< QString, QString > serverProperties(); + TQMap< TQString, TQString > serverProperties(); /** * Updates this contact's group membership and display name on the server */ @@ -170,20 +170,20 @@ protected slots: /** * Receive notification that this contact's privacy setting changed - update status */ - void receivePrivacyChanged( const QString &, bool ); + void receivePrivacyChanged( const TQString &, bool ); protected: KActionCollection* m_actionCollection; int m_objectId; int m_parentId; int m_sequence; - QString m_dn; - QString m_displayName; + TQString m_dn; + TQString m_displayName; KAction* m_actionPrefs; KAction *m_actionBlock; // Novell Messenger Properties, as received by the server. // Unfortunately we don't the domain of the set of keys, so they are not easily mappable to KopeteContactProperties - QMap< QString, QString > m_serverProperties; + TQMap< TQString, TQString > m_serverProperties; bool m_archiving; // HACK: flag used to differentiate between 'all contact list instances gone while we are moving on the server' // and 'all contact list instances gone because we wanted to delete them all' |