summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-03-13 20:21:44 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-03-13 20:21:44 (GMT)
commitaf55f854d4f8fa8bc336dcb492c0dbe5ca9a1c92 (patch)
tree883f10d96a6c989082997ac9637fc20f422cc449
parent970cf01f08056e032895427eaef3ca55bca8843a (diff)
downloadCMake-af55f854d4f8fa8bc336dcb492c0dbe5ca9a1c92.zip
CMake-af55f854d4f8fa8bc336dcb492c0dbe5ca9a1c92.tar.gz
CMake-af55f854d4f8fa8bc336dcb492c0dbe5ca9a1c92.tar.bz2
ENH: make menu item match -Wno-dev command line
-rw-r--r--Source/QtDialog/CMakeSetupDialog.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx
index 64b263e..d553cfb 100644
--- a/Source/QtDialog/CMakeSetupDialog.cxx
+++ b/Source/QtDialog/CMakeSetupDialog.cxx
@@ -96,7 +96,7 @@ CMakeSetupDialog::CMakeSetupDialog()
this->GenerateAction = ToolsMenu->addAction(tr("&Generate"));
QObject::connect(this->GenerateAction, SIGNAL(triggered(bool)),
this, SLOT(doGenerate()));
- this->SuppressDevWarningsAction = ToolsMenu->addAction(tr("&Suppress dev Warnings"));
+ this->SuppressDevWarningsAction = ToolsMenu->addAction(tr("&Suppress dev Warnings (-Wno-dev)"));
QObject::connect(this->SuppressDevWarningsAction, SIGNAL(triggered(bool)),
this, SLOT(doSuppressDev()));
this->SuppressDevWarningsAction->setCheckable(true);