Skip to content
GitLab
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
5f028108
Commit
5f028108
authored
Mar 25, 2010
by
hjk
Browse files
debugger: code cosmetics
parent
dbcbe473
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggermanager.cpp
View file @
5f028108
...
...
@@ -488,13 +488,16 @@ void DebuggerManager::init()
"resets the debugger to the initial state."
));
d
->
m_actions
.
nextAction
=
new
QAction
(
tr
(
"Step Over"
),
this
);
d
->
m_actions
.
nextAction
->
setIcon
(
QIcon
(
":/debugger/images/debugger_stepover_small.png"
));
d
->
m_actions
.
nextAction
->
setIcon
(
QIcon
(
":/debugger/images/debugger_stepover_small.png"
));
d
->
m_actions
.
stepAction
=
new
QAction
(
tr
(
"Step Into"
),
this
);
d
->
m_actions
.
stepAction
->
setIcon
(
QIcon
(
":/debugger/images/debugger_stepinto_small.png"
));
d
->
m_actions
.
stepAction
->
setIcon
(
QIcon
(
":/debugger/images/debugger_stepinto_small.png"
));
d
->
m_actions
.
stepOutAction
=
new
QAction
(
tr
(
"Step Out"
),
this
);
d
->
m_actions
.
stepOutAction
->
setIcon
(
QIcon
(
":/debugger/images/debugger_stepout_small.png"
));
d
->
m_actions
.
stepOutAction
->
setIcon
(
QIcon
(
":/debugger/images/debugger_stepout_small.png"
));
d
->
m_actions
.
runToLineAction1
=
new
QAction
(
tr
(
"Run to Line"
),
this
);
d
->
m_actions
.
runToLineAction2
=
new
QAction
(
tr
(
"Run to Line"
),
this
);
...
...
@@ -572,7 +575,7 @@ void DebuggerManager::init()
DebuggerUISwitcher
*
uiSwitcher
=
DebuggerUISwitcher
::
instance
();
d
->
m_breakDock
=
uiSwitcher
->
createDockWidget
(
LANG_CPP
,
d
->
m_breakWindow
);
d
->
m_modulesDock
=
uiSwitcher
->
createDockWidget
(
LANG_CPP
,
d
->
m_modulesWindow
,
Qt
::
TopDockWidgetArea
,
false
);
Qt
::
TopDockWidgetArea
,
false
);
connect
(
d
->
m_modulesDock
->
toggleViewAction
(),
SIGNAL
(
toggled
(
bool
)),
this
,
SLOT
(
reloadModules
()),
Qt
::
QueuedConnection
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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