summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/tasks/createcontacttask.h
diff options
context:
space:
mode:
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;
};