summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/tasks/searchusertask.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/searchusertask.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/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;
};