aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/help
diff options
context:
space:
mode:
authorGravatar un1versal2015-11-30 15:47:55 +0000
committerGravatar un1versal2015-12-05 12:05:58 +0000
commit22f03335938979aaaee059a356123bd6414910bb (patch)
tree042682c409dbb8b79633cb2556039131ee1f8a88 /src/modules/help
parentlibkvifish: capitalization and consistency fixes (diff)
downloadKVIrc-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.cpp6
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;
}