From af55f854d4f8fa8bc336dcb492c0dbe5ca9a1c92 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 13 Mar 2008 16:21:44 -0400 Subject: [PATCH] ENH: make menu item match -Wno-dev command line --- Source/QtDialog/CMakeSetupDialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/QtDialog/CMakeSetupDialog.cxx b/Source/QtDialog/CMakeSetupDialog.cxx index 64b263ed5..d553cfba7 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);