summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/userdetailsmanager.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/groupwise/libgroupwise/userdetailsmanager.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/groupwise/libgroupwise/userdetailsmanager.h')
-rw-r--r--kopete/protocols/groupwise/libgroupwise/userdetailsmanager.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/userdetailsmanager.h b/kopete/protocols/groupwise/libgroupwise/userdetailsmanager.h
index 4e9b6022..f5a5ff6c 100644
--- a/kopete/protocols/groupwise/libgroupwise/userdetailsmanager.h
+++ b/kopete/protocols/groupwise/libgroupwise/userdetailsmanager.h
@@ -18,9 +18,9 @@
#ifndef USERDETAILSMANAGER_H
#define USERDETAILSMANAGER_H
-#include <qmap.h>
-#include <qobject.h>
-#include <qstringlist.h>
+#include <tqmap.h>
+#include <tqobject.h>
+#include <tqstringlist.h>
#include "gwerror.h"
class Client;
@@ -40,15 +40,15 @@ public:
/**
* List of DNs that we have already received details for
*/
- QStringList knownDNs();
+ TQStringList knownDNs();
/**
* Check if we have details for a single DN
*/
- bool known( const QString &dn );
+ bool known( const TQString &dn );
/**
* Get details for a given DN
*/
- ContactDetails details( const QString &dn );
+ ContactDetails details( const TQString &dn );
/**
* Add a ContactDetails object to our cache.
* This SHOULD be called when receiving details in contactlist receive and manipulation, to prevent unnecessary additional requests.
@@ -58,27 +58,27 @@ public:
* Remove a contact from the list of known DNs. This MUST be performed when a client removes a DN from its local contact list,
* otherwise new events from this DN will not receive user details.
*/
- void removeContact( const QString & dn );
+ void removeContact( const TQString & dn );
/**
* Explicitly request details for a set of contacts from the server.
* Will signal @ref gotContactUserDetails for each one when they are available.
*/
- void requestDetails( const QStringList & dnList, bool onlyUnknown = true );
+ void requestDetails( const TQStringList & dnList, bool onlyUnknown = true );
/**
* Explicitly request a contact's details from the server. Will signal @ref gotContactUserDetails when they are available.
*/
- void requestDetails( const QString & dn, bool onlyUnknown = true );
+ void requestDetails( const TQString & dn, bool onlyUnknown = true );
signals:
void gotContactDetails( const GroupWise::ContactDetails & );
protected slots:
void slotReceiveContactDetails( const GroupWise::ContactDetails & );
protected:
- void dump( const QStringList & list );
+ void dump( const TQStringList & list );
private:
- QStringList m_pendingDNs; // a list of DNs that have pending requests
+ TQStringList m_pendingDNs; // a list of DNs that have pending requests
Client * m_client;
- QMap< QString, GroupWise::ContactDetails > m_detailsMap;
+ TQMap< TQString, GroupWise::ContactDetails > m_detailsMap;
};
#endif