diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /tools/assistant/index.cpp | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
Diffstat (limited to 'tools/assistant/index.cpp')
-rw-r--r-- | tools/assistant/index.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/assistant/index.cpp b/tools/assistant/index.cpp index 24372feed..785f27bc6 100644 --- a/tools/assistant/index.cpp +++ b/tools/assistant/index.cpp @@ -158,7 +158,7 @@ void Index::parseDocument( const TQString &filename, int docNum ) { TQFile file( filename ); if ( !file.open( IO_ReadOnly ) ) { - qWarning( "can not open file " + filename ); + tqWarning( "can not open file " + filename ); return; } @@ -327,7 +327,7 @@ TQString Index::getDocumentTitle( const TQString &fileName ) { TQFile file( fileName ); if ( !file.open( IO_ReadOnly ) ) { - qWarning( "cannot open file " + fileName ); + tqWarning( "cannot open file " + fileName ); return fileName; } TQTextStream s( &file ); @@ -450,7 +450,7 @@ bool Index::searchForPattern( const TQStringList &patterns, const TQStringList & { TQFile file( fileName ); if ( !file.open( IO_ReadOnly ) ) { - qWarning( "cannot open file " + fileName ); + tqWarning( "cannot open file " + fileName ); return FALSE; } |