diff options
| author | 2015-11-30 15:47:55 +0000 | |
|---|---|---|
| committer | 2015-12-05 12:05:58 +0000 | |
| commit | 22f03335938979aaaee059a356123bd6414910bb (patch) | |
| tree | 042682c409dbb8b79633cb2556039131ee1f8a88 /src/modules/help | |
| parent | libkvifish: capitalization and consistency fixes (diff) | |
| download | KVIrc-22f03335938979aaaee059a356123bd6414910bb.tar.gz KVIrc-22f03335938979aaaee059a356123bd6414910bb.tar.bz2 KVIrc-22f03335938979aaaee059a356123bd6414910bb.zip | |
HelpIndex: debug messages consistency fixes
Diffstat (limited to 'src/modules/help')
| -rw-r--r-- | src/modules/help/HelpIndex.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/help/HelpIndex.cpp b/src/modules/help/HelpIndex.cpp index 95d125cfe..69a9c875b 100644 --- a/src/modules/help/HelpIndex.cpp +++ b/src/modules/help/HelpIndex.cpp @@ -210,7 +210,7 @@ void HelpIndex::parseDocument( const QString &filename, int docNum ) { QFile file( filename ); if ( !file.open(QFile::ReadOnly) ) { - qWarning( "can not open file %s", qPrintable(filename) ); + qWarning( "Can't open file %s", qPrintable(filename) ); return; } @@ -395,7 +395,7 @@ QString HelpIndex::getDocumentTitle( const QString &fullFileName ) QFile file( fileName ); if ( !file.open( QFile::ReadOnly ) ) { - qWarning( "cannot open file %s", qPrintable(fileName) ); + qWarning( "Can't open file %s", qPrintable(fileName) ); return fileName; } QTextStream s( &file ); @@ -525,7 +525,7 @@ bool HelpIndex::searchForPattern( const QStringList &patterns, const QStringList QString fName = url.toLocalFile(); QFile file( fName ); if ( !file.open( QFile::ReadOnly ) ) { - qWarning( "cannot open file %s", qPrintable(fName) ); + qWarning( "Can't open file %s", qPrintable(fName) ); return false; } |
