diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:18:52 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:18:52 -0600 |
commit | ebabab113252ed75baf5c8181937f14c55a8886b (patch) | |
tree | 54cd41c7941b9f4df75f4017d7cab61a63b8d74c /src/kchmsearchengine_impl.cpp | |
parent | a06972de3036b2c2cc2b49a6a100cede2358541f (diff) | |
download | kchmviewer-ebabab113252ed75baf5c8181937f14c55a8886b.tar.gz kchmviewer-ebabab113252ed75baf5c8181937f14c55a8886b.zip |
Rename additional global TQt functions
Diffstat (limited to 'src/kchmsearchengine_impl.cpp')
-rw-r--r-- | src/kchmsearchengine_impl.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kchmsearchengine_impl.cpp b/src/kchmsearchengine_impl.cpp index b4b2c3a..0352ee3 100644 --- a/src/kchmsearchengine_impl.cpp +++ b/src/kchmsearchengine_impl.cpp @@ -163,13 +163,13 @@ bool Index::parseDocumentToStringlist( const TQString & filename, TQStringList & if ( !::mainWindow->chmFile()->getFileContentAsString( &text, filename ) ) { - qWarning( "Index::parseDocument: Could not retrieve the content at %s", filename.ascii() ); + tqWarning( "Index::parseDocument: Could not retrieve the content at %s", filename.ascii() ); return false; } if ( text.isNull() ) { - qWarning( "Index::parseDocument: Retrieved content for %s is empty", filename.ascii() ); + tqWarning( "Index::parseDocument: Retrieved content for %s is empty", filename.ascii() ); return false; } @@ -243,7 +243,7 @@ bool Index::parseDocumentToStringlist( const TQString & filename, TQStringList & parsedbuf += "&"; } else - qWarning( "Index::parseDocument: incorrectly terminated HTML entity '&%s%c', ignoring", parseentity.ascii(), ch.latin1() ); + tqWarning( "Index::parseDocument: incorrectly terminated HTML entity '&%s%c', ignoring", parseentity.ascii(), ch.latin1() ); j--; // parse this character again, but in different state continue; @@ -257,7 +257,7 @@ bool Index::parseDocumentToStringlist( const TQString & filename, TQStringList & if ( entity.isNull() ) { // decodeEntity() already printed error message - //qWarning( "Index::parseDocument: failed to decode entity &%s;", parsedbuf.ascii() ); + //tqWarning( "Index::parseDocument: failed to decode entity &%s;", parsedbuf.ascii() ); continue; } @@ -346,7 +346,7 @@ void Index::writeDict() if ( !f.open( IO_WriteOnly ) ) { - qWarning( "Index::writeDict: could not write dictionary file %s", dictFile.ascii() ); + tqWarning( "Index::writeDict: could not write dictionary file %s", dictFile.ascii() ); return; } @@ -371,7 +371,7 @@ void Index::writeDocumentList() TQFile f( docListFile ); if ( !f.open( IO_WriteOnly ) ) { - qWarning( "Index::writeDocumentList: could not write dictionary file %s", docListFile.ascii() ); + tqWarning( "Index::writeDocumentList: could not write dictionary file %s", docListFile.ascii() ); return; } TQDataStream s( &f ); @@ -533,7 +533,7 @@ bool Index::searchForPhrases( const TQStringList &phrases, const TQStringList &w for ( unsigned int i = 1; i < pos.size(); i++ ) text += " " + TQString::number( pos[i] ); - qDebug( "%s", text.ascii()); + tqDebug( "%s", text.ascii()); } */ |