summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/tasks/searchusertask.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/groupwise/libgroupwise/tasks/searchusertask.h')
-rw-r--r--kopete/protocols/groupwise/libgroupwise/tasks/searchusertask.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/tasks/searchusertask.h b/kopete/protocols/groupwise/libgroupwise/tasks/searchusertask.h
index 28c09b02..e99a1236 100644
--- a/kopete/protocols/groupwise/libgroupwise/tasks/searchusertask.h
+++ b/kopete/protocols/groupwise/libgroupwise/tasks/searchusertask.h
@@ -41,7 +41,7 @@ public:
* Create the search query
* @param query a list of search terms
*/
- void search( const QValueList<GroupWise::UserSearchQueryTerm> & query);
+ void search( const TQValueList<GroupWise::UserSearchQueryTerm> & query);
/**
* If the query was accepted, start a timer to poll for results using PollSearchResultsTask
*/
@@ -49,14 +49,14 @@ public:
/**
* Access the results of the search
*/
- QValueList< GroupWise::ContactDetails > results();
+ TQValueList< GroupWise::ContactDetails > results();
protected slots:
void slotPollForResults();
void slotGotPollResults();
private:
- QString m_queryHandle; // used to identify our query to the server, so we can poll for its results
- QTimer * m_resultsPollTimer;
- QValueList< GroupWise::ContactDetails > m_results;
+ TQString m_queryHandle; // used to identify our query to the server, so we can poll for its results
+ TQTimer * m_resultsPollTimer;
+ TQValueList< GroupWise::ContactDetails > m_results;
int m_polls;
};