From 7c50e74b9570ce38ead3fa78f148ea77f05e3cad Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Sat, 20 Jun 2009 23:52:54 +0300 Subject: [PATCH] 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. --- gui/mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index bdb93ad9d..9dc8e7b16 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -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),