diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-11 22:51:56 -0400 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-03-11 22:51:56 -0400 |
commit | 420725077cc9326d5b8c610f2770994a177eed15 (patch) | |
tree | 955bf582c6b9d25475b1c98a98a0ba49b587f2d9 /Source/QtDialog/CMakeSetupDialog.h | |
parent | fc26c1459caa61c79b9076e3ca85905e45bbcbc9 (diff) | |
download | cmake-420725077cc9326d5b8c610f2770994a177eed15.tar.gz |
ENH: add ability to suppress dev warnings to gui code
Diffstat (limited to 'Source/QtDialog/CMakeSetupDialog.h')
-rw-r--r-- | Source/QtDialog/CMakeSetupDialog.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/QtDialog/CMakeSetupDialog.h b/Source/QtDialog/CMakeSetupDialog.h index b2dbce67da..ae9128ec2e 100644 --- a/Source/QtDialog/CMakeSetupDialog.h +++ b/Source/QtDialog/CMakeSetupDialog.h @@ -44,6 +44,7 @@ protected slots: void initialize(); void doConfigure(); void doGenerate(); + void doSuppressDev(); void doHelp(); void doAbout(); void doInterrupt(); @@ -85,11 +86,13 @@ protected: QCMakeThread* CMakeThread; bool ExitAfterGenerate; bool CacheModified; + bool SuppressDevWarnings; QAction* ReloadCacheAction; QAction* DeleteCacheAction; QAction* ExitAction; QAction* ConfigureAction; QAction* GenerateAction; + QAction* SuppressDevWarningsAction; State CurrentState; }; |