From 47c8a359c5276062c4bc17f0e82410f29081b502 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:48:06 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- .../groupwise/libgroupwise/userdetailsmanager.h | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'kopete/protocols/groupwise/libgroupwise/userdetailsmanager.h') 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 -#include -#include +#include +#include +#include #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 -- cgit v1.2.1