summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/tests/google/googlesearchservice.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kode/kwsdl/tests/google/googlesearchservice.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kode/kwsdl/tests/google/googlesearchservice.h')
-rw-r--r--kode/kwsdl/tests/google/googlesearchservice.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kode/kwsdl/tests/google/googlesearchservice.h b/kode/kwsdl/tests/google/googlesearchservice.h
index cc8bef027..6efd65239 100644
--- a/kode/kwsdl/tests/google/googlesearchservice.h
+++ b/kode/kwsdl/tests/google/googlesearchservice.h
@@ -24,10 +24,10 @@
#ifndef GOOGLESEARCHSERVICE_H
#define GOOGLESEARCHSERVICE_H
-#include <qobject.h>
-#include <qstring.h>
+#include <tqobject.h>
+#include <tqstring.h>
#include <transport.h>
-#include <qcstring.h>
+#include <tqcstring.h>
#include <googlesearchresult.h>
class GoogleSearchService : public QObject
@@ -35,21 +35,21 @@ class GoogleSearchService : public QObject
Q_OBJECT
public:
- void doGetCachedPage( QString* key, QString* url );
- void doSpellingSuggestion( QString* key, QString* phrase );
- void doGoogleSearch( QString* key, QString* q, int* start, int* maxResults, bool* filter, QString* restrict, bool* safeSearch, QString* lr, QString* ie, QString* oe );
+ void doGetCachedPage( TQString* key, TQString* url );
+ void doSpellingSuggestion( TQString* key, TQString* phrase );
+ void doGoogleSearch( TQString* key, TQString* q, int* start, int* maxResults, bool* filter, TQString* restrict, bool* safeSearch, TQString* lr, TQString* ie, TQString* oe );
GoogleSearchService();
~GoogleSearchService();
signals:
- void doGetCachedPageResponse( QByteArray* value );
- void doSpellingSuggestionResponse( QString* value );
+ void doGetCachedPageResponse( TQByteArray* value );
+ void doSpellingSuggestionResponse( TQString* value );
void doGoogleSearchResponse( GoogleSearchResult* value );
private slots:
- void doGetCachedPageResponseSlot( const QString &xml );
- void doSpellingSuggestionResponseSlot( const QString &xml );
- void doGoogleSearchResponseSlot( const QString &xml );
+ void doGetCachedPageResponseSlot( const TQString &xml );
+ void doSpellingSuggestionResponseSlot( const TQString &xml );
+ void doGoogleSearchResponseSlot( const TQString &xml );
private:
Transport*mDoGetCachedPageTransport;