diff options
Diffstat (limited to 'src/modules/help')
-rwxr-xr-x | src/modules/help/index.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/help/index.cpp b/src/modules/help/index.cpp index d77e6fed..3aa8d408 100755 --- a/src/modules/help/index.cpp +++ b/src/modules/help/index.cpp @@ -156,7 +156,7 @@ void Index::parseDocument( const TQString &filename, int docNum ) { KviFile file( filename ); if ( !file.openForReading() ) { - qWarning( "can not open file " + filename ); + tqWarning( "can not open file " + filename ); return; } TQTextStream s( &file ); @@ -452,7 +452,7 @@ TQString Index::getDocumentTitle( const TQString &fileName ) if ( !file.openForReading() ) { - qWarning( "cannot open file " + fileName ); + tqWarning( "cannot open file " + fileName ); return fileName; @@ -701,7 +701,7 @@ bool Index::searchForPattern( const TQStringList &patterns, const TQStringList & if ( !file.openForReading() ) { - qWarning( "cannot open file " + fileName ); + tqWarning( "cannot open file " + fileName ); return FALSE; |