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
Marco Bubke
flatpak-qt-creator
Commits
15573c1a
Commit
15573c1a
authored
Nov 08, 2010
by
hjk
Browse files
debugger: compile fix for threadshandler
parent
98ea2b8b
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/threadshandler.h
View file @
15573c1a
...
...
@@ -60,7 +60,6 @@ public:
void
setCurrentThreadId
(
int
id
);
int
indexOf
(
quint64
threadId
)
const
;
void
selectThread
(
int
index
);
void
setThreads
(
const
Threads
&
threads
);
void
removeAll
();
Threads
threads
()
const
;
...
...
src/plugins/debugger/threadswindow.cpp
View file @
15573c1a
...
...
@@ -66,7 +66,7 @@ ThreadsWindow::ThreadsWindow(QWidget *parent)
void
ThreadsWindow
::
rowActivated
(
const
QModelIndex
&
index
)
{
selectThread
(
index
.
row
());
DebuggerPlugin
::
instance
()
->
currentEngine
()
->
selectThread
(
index
.
row
());
}
void
ThreadsWindow
::
contextMenuEvent
(
QContextMenuEvent
*
ev
)
...
...
@@ -108,11 +108,5 @@ void ThreadsWindow::setAlwaysResizeColumnsToContents(bool on)
header
()
->
setResizeMode
(
0
,
mode
);
}
void
ThreadsWindow
::
selectThread
(
int
index
)
{
DebuggerPlugin
::
instance
()
->
currentEngine
()
->
threadsHandler
()
->
selectThread
(
index
);
}
}
// namespace Internal
}
// namespace Debugger
src/plugins/debugger/threadswindow.h
View file @
15573c1a
...
...
@@ -45,7 +45,6 @@ public:
public
slots
:
void
resizeColumnsToContents
();
void
setAlwaysResizeColumnsToContents
(
bool
on
);
void
selectThread
(
int
index
);
private
slots
:
void
rowActivated
(
const
QModelIndex
&
index
);
...
...
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