diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /tools/assistant/index.cpp | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
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 9e73ceb..c2190e6 100644 --- a/tools/assistant/index.cpp +++ b/tools/assistant/index.cpp @@ -158,7 +158,7 @@ void Index::parseDocument( const QString &filename, int docNum ) { QFile file( filename ); if ( !file.open( IO_ReadOnly ) ) { - qWarning( "can not open file " + filename ); + tqWarning( "can not open file " + filename ); return; } @@ -327,7 +327,7 @@ QString Index::getDocumentTitle( const QString &fileName ) { QFile file( fileName ); if ( !file.open( IO_ReadOnly ) ) { - qWarning( "cannot open file " + fileName ); + tqWarning( "cannot open file " + fileName ); return fileName; } QTextStream s( &file ); @@ -450,7 +450,7 @@ bool Index::searchForPattern( const QStringList &patterns, const QStringList &wo { QFile file( fileName ); if ( !file.open( IO_ReadOnly ) ) { - qWarning( "cannot open file " + fileName ); + tqWarning( "cannot open file " + fileName ); return FALSE; } |