summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/tasks/createcontacttask.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/tasks/createcontacttask.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/tasks/createcontacttask.h')
-rw-r--r--kopete/protocols/groupwise/libgroupwise/tasks/createcontacttask.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/tasks/createcontacttask.h b/kopete/protocols/groupwise/libgroupwise/tasks/createcontacttask.h
index a9e4ab06..2a46a51c 100644
--- a/kopete/protocols/groupwise/libgroupwise/tasks/createcontacttask.h
+++ b/kopete/protocols/groupwise/libgroupwise/tasks/createcontacttask.h
@@ -21,7 +21,7 @@
#ifndef CREATECONTACTTASK_H
#define CREATECONTACTTASK_H
-#include <qvaluelist.h>
+#include <tqvaluelist.h>
#include "gwerror.h"
@@ -48,12 +48,12 @@ public:
/**
* Get the userId of the contact just created
*/
- QString userId();
+ TQString userId();
/**
* Get the DN of the contact just created
*/
- QString dn();
- QString displayName();
+ TQString dn();
+ TQString displayName();
/**
* Sets up the task.
@@ -63,8 +63,8 @@ public:
* @param folders A list of folders that the contact should belong to - any folders that do not exist on the server should have a objectId of 0, and will be created
* @param topLevel is the folder also in the top level folder?
*/
- void contactFromUserId( const QString & userId, const QString & displayName, const int firstSeqNo, const QValueList< FolderItem > folders, bool topLevel );
- //void contactFromDN( const QString & dn, const QString & displayName, const int parentFolder );
+ void contactFromUserId( const TQString & userId, const TQString & displayName, const int firstSeqNo, const TQValueList< FolderItem > folders, bool topLevel );
+ //void contactFromDN( const TQString & dn, const TQString & displayName, const int parentFolder );
/**
* This task doesn't do any I/O itself, so this take prints an error and returns false;
*/
@@ -78,10 +78,10 @@ protected slots:
void slotCheckContactInstanceCreated();
private:
int m_firstSequenceNumber;
- QString m_userId;
- QString m_dn;
- QString m_displayName;
- QValueList< FolderItem > m_folders;
+ TQString m_userId;
+ TQString m_dn;
+ TQString m_displayName;
+ TQValueList< FolderItem > m_folders;
bool m_topLevel;
};