ENH: make menu item match -Wno-dev command line

This commit is contained in:
Bill Hoffman 2008-03-13 16:21:44 -04:00
parent 970cf01f08
commit af55f854d4
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ CMakeSetupDialog::CMakeSetupDialog()
this->GenerateAction = ToolsMenu->addAction(tr("&Generate")); this->GenerateAction = ToolsMenu->addAction(tr("&Generate"));
QObject::connect(this->GenerateAction, SIGNAL(triggered(bool)), QObject::connect(this->GenerateAction, SIGNAL(triggered(bool)),
this, SLOT(doGenerate())); 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)), QObject::connect(this->SuppressDevWarningsAction, SIGNAL(triggered(bool)),
this, SLOT(doSuppressDev())); this, SLOT(doSuppressDev()));
this->SuppressDevWarningsAction->setCheckable(true); this->SuppressDevWarningsAction->setCheckable(true);