diff options
author | Michael Scott <michael.scott250@gmail.com> | 2015-12-26 16:04:13 +0000 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-01-12 14:03:32 -0500 |
commit | 821667018cc0ea049c52647b507d1a8e4bbe2c3a (patch) | |
tree | 21dc6a6724338284e9d085905183cf29abe5c7a8 /Source/QtDialog/WarningMessagesDialog.ui | |
parent | 28f2d750edaf6ee1af660d3a0ae6792c65c47997 (diff) | |
download | cmake-821667018cc0ea049c52647b507d1a8e4bbe2c3a.tar.gz |
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.ui')
-rw-r--r-- | Source/QtDialog/WarningMessagesDialog.ui | 57 |
1 files changed, 55 insertions, 2 deletions
diff --git a/Source/QtDialog/WarningMessagesDialog.ui b/Source/QtDialog/WarningMessagesDialog.ui index 2367772cfa..3b35cbc676 100644 --- a/Source/QtDialog/WarningMessagesDialog.ui +++ b/Source/QtDialog/WarningMessagesDialog.ui @@ -6,8 +6,8 @@ <rect> <x>0</x> <y>0</y> - <width>250</width> - <height>150</height> + <width>300</width> + <height>300</height> </rect> </property> <property name="windowTitle"> @@ -37,6 +37,9 @@ <verstretch>0</verstretch> </sizepolicy> </property> + <property name="toolTip"> + <string>Suppress developer (author) warnings.</string> + </property> <property name="text"> <string>Developer Warnings</string> </property> @@ -53,6 +56,9 @@ <verstretch>0</verstretch> </sizepolicy> </property> + <property name="toolTip"> + <string>Suppress deprecated warnings.</string> + </property> <property name="text"> <string>Deprecated Warnings</string> </property> @@ -65,6 +71,53 @@ </widget> </item> <item> + <widget class="QGroupBox" name="groupBox_2"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="title"> + <string>Warnings as Errors</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout_3"> + <item> + <widget class="QCheckBox" name="developerWarningsAsErrors"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="toolTip"> + <string>Treat developer (author) warnings as errors.</string> + </property> + <property name="text"> + <string>Developer Warnings as Errors</string> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="deprecatedWarningsAsErrors"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="toolTip"> + <string>Treat deprecated warnings as errors.</string> + </property> + <property name="text"> + <string>Deprecated Warnings as Errors</string> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> |