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
Tobias Hunger
qt-creator
Commits
6e2b0661
Commit
6e2b0661
authored
Dec 04, 2008
by
hjk
Browse files
add a few explanations to some obscure actions
parent
10053aa6
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggermanager.cpp
View file @
6e2b0661
...
...
@@ -317,10 +317,20 @@ void DebuggerManager::init()
m_debugDumpersAction
=
new
QAction
(
this
);
m_debugDumpersAction
->
setText
(
tr
(
"Debug Custom Dumpers"
));
m_debugDumpersAction
->
setText
(
tr
(
"This is an internal tool to "
"make debugging the Custom Data Dumper code easier. "
"Using this action is in general not needed unless you "
"want do debug Qt Creator itself."
));
m_debugDumpersAction
->
setCheckable
(
true
);
m_skipKnownFramesAction
=
new
QAction
(
this
);
m_skipKnownFramesAction
->
setText
(
tr
(
"Skip Known Frames When Stepping"
));
m_skipKnownFramesAction
->
setToolTip
(
tr
(
"After checking this option"
"'Step Into' combines in certain situations several steps, "
"leading to 'less noisy' debugging. So will, e.g., the atomic "
"reference counting code be skipped, and a single 'Step Into' "
"for a signal emission will end up directly in the slot connected "
"to it"
));
m_skipKnownFramesAction
->
setCheckable
(
true
);
m_useCustomDumpersAction
=
new
QAction
(
this
);
...
...
@@ -330,13 +340,6 @@ void DebuggerManager::init()
m_useCustomDumpersAction
->
setCheckable
(
true
);
m_useCustomDumpersAction
->
setChecked
(
true
);
m_useCustomDumpersAction
=
new
QAction
(
this
);
m_useCustomDumpersAction
->
setText
(
tr
(
"Use Custom Display for Qt Objects"
));
m_useCustomDumpersAction
->
setToolTip
(
tr
(
"Checking this will make the debugger "
"try to use code to format certain data (QObject, QString, ...) nicely. "
));
m_useCustomDumpersAction
->
setCheckable
(
true
);
m_useCustomDumpersAction
->
setChecked
(
true
);
m_useFastStartAction
=
new
QAction
(
this
);
m_useFastStartAction
->
setText
(
tr
(
"Fast Debugger Start"
));
m_useFastStartAction
->
setToolTip
(
tr
(
"Checking this will make the debugger "
...
...
Write
Preview
Supports
Markdown
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