diff options
| author | 2016-02-11 04:33:11 +0000 | |
|---|---|---|
| committer | 2016-02-27 10:47:52 +0000 | |
| commit | f41c1f2868ee7d318b29e4c076db45a8b0346b3d (patch) | |
| tree | 62f05c4fb396a2361c457b9d0ee68385b1eed2b0 /src/modules/help/HelpWindow.cpp | |
| parent | statusbarapplet: update tootip add space between double-click and main text (diff) | |
| download | KVIrc-f41c1f2868ee7d318b29e4c076db45a8b0346b3d.tar.gz KVIrc-f41c1f2868ee7d318b29e4c076db45a8b0346b3d.tar.bz2 KVIrc-f41c1f2868ee7d318b29e4c076db45a8b0346b3d.zip | |
QMessageBox/setWindowTitle: fix headers titles: capitalization, syntax + try to improve entries
+ add window title to find and replace dialog
Diffstat (limited to 'src/modules/help/HelpWindow.cpp')
| -rw-r--r-- | src/modules/help/HelpWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/help/HelpWindow.cpp b/src/modules/help/HelpWindow.cpp index e0b0ae747..47c0fe854 100644 --- a/src/modules/help/HelpWindow.cpp +++ b/src/modules/help/HelpWindow.cpp @@ -215,7 +215,7 @@ void HelpWindow::startSearch() s = s.toLower(); s = s.simplified(); if ( s.contains( '*' ) ) { - QMessageBox::warning( this, tr( "Full Text Search" ), + QMessageBox::warning( this, tr( "Full Text Search - KVIrc" ), tr( "Using a wildcard within phrases is not allowed." ) ); return; } @@ -224,7 +224,7 @@ void HelpWindow::startSearch() beg = str.indexOf( '\"', end + 1); } } else { - QMessageBox::warning( this, tr( "Full Text Search" ), + QMessageBox::warning( this, tr( "Full Text Search - KVIrc" ), tr( "The closing quotation mark is missing." ) ); return; } |
