summaryrefslogtreecommitdiffstats
path: root/kode/kwsdl/tests/google/googlesearch.cc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:35:40 -0600
commit17e2ed52dbf8fac39a04331da02b9572e9e2e304 (patch)
treecd0d57c975a55e05aac71794b363748f24625875 /kode/kwsdl/tests/google/googlesearch.cc
parenta684ecdeceae222d5aa930478b7bf59a3b7cae7f (diff)
downloadtdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.tar.gz
tdepim-17e2ed52dbf8fac39a04331da02b9572e9e2e304.zip
Rename additional global TQt functions
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 d60c04172..690b9a11d 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;
}