summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/WarningMessagesDialog.h
diff options
context:
space:
mode:
authorMichael Scott <michael.scott250@gmail.com>2015-12-26 16:04:13 (GMT)
committerBrad King <brad.king@kitware.com>2016-01-12 19:03:32 (GMT)
commit821667018cc0ea049c52647b507d1a8e4bbe2c3a (patch)
tree21dc6a6724338284e9d085905183cf29abe5c7a8 /Source/QtDialog/WarningMessagesDialog.h
parent28f2d750edaf6ee1af660d3a0ae6792c65c47997 (diff)
downloadCMake-821667018cc0ea049c52647b507d1a8e4bbe2c3a.zip
CMake-821667018cc0ea049c52647b507d1a8e4bbe2c3a.tar.gz
CMake-821667018cc0ea049c52647b507d1a8e4bbe2c3a.tar.bz2
cmake-gui: Add options to control warning-as-error messages
Add new widgets to the warning messages dialog to control treating warnings as errors.
Diffstat (limited to 'Source/QtDialog/WarningMessagesDialog.h')
-rw-r--r--Source/QtDialog/WarningMessagesDialog.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Source/QtDialog/WarningMessagesDialog.h b/Source/QtDialog/WarningMessagesDialog.h
index 028ec10..6c274a7 100644
--- a/Source/QtDialog/WarningMessagesDialog.h
+++ b/Source/QtDialog/WarningMessagesDialog.h
@@ -35,6 +35,28 @@ private slots:
*/
void doAccept();
+ /**
+ * Handler for checked state changed event of the suppress developer warnings
+ * checkbox.
+ */
+ void doSuppressDeveloperWarningsChanged(int state);
+ /**
+ * Handler for checked state changed event of the suppress deprecated
+ * warnings checkbox.
+ */
+ void doSuppressDeprecatedWarningsChanged(int state);
+
+ /**
+ * Handler for checked state changed event of the developer warnings as
+ * errors checkbox.
+ */
+ void doDeveloperWarningsAsErrorsChanged(int state);
+ /**
+ * Handler for checked state changed event of the deprecated warnings as
+ * errors checkbox.
+ */
+ void doDeprecatedWarningsAsErrorsChanged(int state);
+
private:
QCMake* cmakeInstance;