Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
457addbf
Commit
457addbf
authored
May 06, 2009
by
hjk
Browse files
debugger: imporev grey-out logic on the dumper settings page
parent
63384fbd
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerplugin.cpp
View file @
457addbf
...
...
@@ -368,6 +368,7 @@ QWidget *DebuggingHelperOptionPage::createPage(QWidget *parent)
mdebug->addAction(cmd);
#endif
#endif
updateState
();
return
w
;
}
...
...
@@ -376,9 +377,10 @@ void DebuggingHelperOptionPage::updateState()
{
m_ui
.
checkBoxUseCustomDebuggingHelperLocation
->
setEnabled
(
m_ui
.
checkBoxUseDebuggingHelpers
->
isChecked
());
m_ui
.
dumperLocationChooser
->
setEnabled
(
m_ui
.
checkBoxUseDebuggingHelpers
->
isChecked
()
&&
m_ui
.
checkBoxUseCustomDebuggingHelperLocation
->
isChecked
());
bool
locationEnabled
=
m_ui
.
checkBoxUseDebuggingHelpers
->
isChecked
()
&&
m_ui
.
checkBoxUseCustomDebuggingHelperLocation
->
isChecked
();
m_ui
.
dumperLocationChooser
->
setEnabled
(
locationEnabled
);
m_ui
.
dumperLocationLabel
->
setEnabled
(
locationEnabled
);
}
}
// namespace Internal
...
...
src/plugins/debugger/dumperoptionpage.ui
View file @
457addbf
...
...
@@ -73,7 +73,7 @@
</spacer>
</item>
<item>
<widget
class=
"QLabel"
name=
"
labelDebuggingHel
perLocation"
>
<widget
class=
"QLabel"
name=
"
dum
perLocation
Label
"
>
<property
name=
"text"
>
<string>
Location:
</string>
</property>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment