Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
457addbf
Commit
457addbf
authored
May 06, 2009
by
hjk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debugger: imporev grey-out logic on the dumper settings page
parent
63384fbd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
src/plugins/debugger/debuggerplugin.cpp
src/plugins/debugger/debuggerplugin.cpp
+5
-3
src/plugins/debugger/dumperoptionpage.ui
src/plugins/debugger/dumperoptionpage.ui
+1
-1
No files found.
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