GUI: Rename Check all/Uncheck all View-menu items to Show all/Hide all.

It is not obvious for user what those items do and after all it is about showing/hiding all items.
This commit is contained in:
Kimmo Varis 2009-06-20 23:52:54 +03:00
parent 2adfd3607d
commit 7c50e74b95
1 changed files with 3 additions and 3 deletions

View File

@ -41,13 +41,13 @@ MainWindow::MainWindow() :
mActionReCheck(tr("Recheck files"), this),
mActionCheckDirectory(tr("Check &directory"), this),
mActionSettings(tr("&Settings"), this),
mActionShowAll(tr("show possible false positives"), this),
mActionShowAll(tr("Show possible false positives"), this),
mActionShowSecurity(tr("Show &security errors"), this),
mActionShowStyle(tr("Show s&tyle errors"), this),
mActionShowUnused(tr("Show errors on &unused functions"), this),
mActionShowErrors(tr("Show &common errors"), this),
mActionShowCheckAll(tr("Check all"), this),
mActionShowUncheckAll(tr("Uncheck all"), this),
mActionShowCheckAll(tr("Show all"), this),
mActionShowUncheckAll(tr("Hide all"), this),
mActionShowCollapseAll(tr("Collapse all"), this),
mActionShowExpandAll(tr("Expand all"), this),
mActionAbout(tr("About"), this),