summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/gwcontact.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/groupwise/gwcontact.h')
-rw-r--r--kopete/protocols/groupwise/gwcontact.h24
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'