forked from qt-creator/qt-creator
debugger: refactoring of the plugin interface
There's some 'external' and some 'internal' part now. Other plugins are only supposed the external interface.
This commit is contained in:
@@ -32,8 +32,8 @@
|
||||
#include "threadshandler.h"
|
||||
#include "debuggeractions.h"
|
||||
#include "debuggerconstants.h"
|
||||
#include "debuggercore.h"
|
||||
#include "debuggerengine.h"
|
||||
#include "debuggerplugin.h"
|
||||
|
||||
#include <utils/savedaction.h>
|
||||
|
||||
@@ -66,7 +66,7 @@ ThreadsWindow::ThreadsWindow(QWidget *parent)
|
||||
|
||||
void ThreadsWindow::rowActivated(const QModelIndex &index)
|
||||
{
|
||||
DebuggerPlugin::instance()->currentEngine()->selectThread(index.row());
|
||||
debuggerCore()->currentEngine()->selectThread(index.row());
|
||||
}
|
||||
|
||||
void ThreadsWindow::contextMenuEvent(QContextMenuEvent *ev)
|
||||
|
||||
Reference in New Issue
Block a user