summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/tests/google/googlesearch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kode/kwsdl/tests/google/googlesearch.cc')
-rw-r--r--kode/kwsdl/tests/google/googlesearch.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/kode/kwsdl/tests/google/googlesearch.cc b/kode/kwsdl/tests/google/googlesearch.cc
index d60c0417..690b9a11 100644
--- a/kode/kwsdl/tests/google/googlesearch.cc
+++ b/kode/kwsdl/tests/google/googlesearch.cc
@@ -60,33 +60,33 @@ void GoogleSearch::googleSearch( const TQString &query, int start, int maxResult
void GoogleSearch::cachedPageResult( TQByteArray *array )
{
- qDebug( "--------------- Cached Page Results ---------------------" );
- qDebug( "%s", array->data() );
- qDebug( "---------------------------------------------------------" );
+ tqDebug( "--------------- Cached Page Results ---------------------" );
+ tqDebug( "%s", array->data() );
+ tqDebug( "---------------------------------------------------------" );
delete array;
}
void GoogleSearch::spellingSuggestionResult( TQString *word )
{
- qDebug( "--------------- Spelling Suggestion ---------------------" );
- qDebug( "%s", word->latin1() );
- qDebug( "---------------------------------------------------------" );
+ tqDebug( "--------------- Spelling Suggestion ---------------------" );
+ tqDebug( "%s", word->latin1() );
+ tqDebug( "---------------------------------------------------------" );
delete word;
}
void GoogleSearch::googleSearchResult( GoogleSearchResult *result )
{
- qDebug( "--------------------- Search Results ---------------------" );
+ tqDebug( "--------------------- Search Results ---------------------" );
ResultElementArray *array = result->resultElements();
TQPtrList<ResultElement> *list = array->items();
TQPtrListIterator<ResultElement> it( *list );
while ( it.current() != 0 ) {
- qDebug( "%s: %s", it.current()->summary()->latin1(), it.current()->uRL()->latin1() );
+ tqDebug( "%s: %s", it.current()->summary()->latin1(), it.current()->uRL()->latin1() );
++it;
}
- qDebug( "---------------------------------------------------------" );
+ tqDebug( "---------------------------------------------------------" );
delete result;
}