debugger: compile fix for threadshandler

This commit is contained in:
hjk
2010-11-08 15:29:21 +01:00
parent 98ea2b8b4c
commit 15573c1a81
3 changed files with 1 additions and 9 deletions

View File

@@ -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