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
c0f7bc0d
Commit
c0f7bc0d
authored
Nov 08, 2010
by
hjk
Browse files
debugger: remove indirection through view for selectThread()
parent
df04e575
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerplugin.cpp
View file @
c0f7bc0d
...
...
@@ -872,7 +872,10 @@ public:
DebuggerEngine
*
currentEngine
()
const
{
return
m_currentEngine
;
}
public
slots
:
void
selectThread
(
int
index
);
void
selectThread
(
int
index
)
{
currentEngine
()
->
selectThread
(
index
);
}
void
breakpointSetRemoveMarginActionTriggered
()
{
...
...
@@ -1803,8 +1806,7 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments, QString *er
hbox
->
addWidget
(
new
QLabel
(
tr
(
"Threads:"
)));
m_threadBox
=
new
QComboBox
;
connect
(
m_threadBox
,
SIGNAL
(
activated
(
int
)),
m_threadsWindow
,
SLOT
(
selectThread
(
int
)));
connect
(
m_threadBox
,
SIGNAL
(
activated
(
int
)),
SLOT
(
selectThread
(
int
)));
hbox
->
addWidget
(
m_threadBox
);
hbox
->
addSpacerItem
(
new
QSpacerItem
(
4
,
0
));
...
...
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