debugger: remove displayDebugger() from the plugin interface

This commit is contained in:
hjk
2010-12-08 18:23:10 +01:00
parent 0c8c652104
commit 26bc7f9037
3 changed files with 2 additions and 10 deletions

View File

@@ -30,9 +30,9 @@
#include "snapshothandler.h"
#include "debuggerconstants.h"
#include "debuggercore.h"
#include "debuggerengine.h"
#include "debuggerrunner.h"
#include "debuggerplugin.h"
#include <utils/qtcassert.h>
@@ -213,7 +213,7 @@ void SnapshotHandler::activateSnapshot(int index)
{
m_currentIndex = index;
//qDebug() << "ACTIVATING INDEX: " << m_currentIndex << " OF " << size();
DebuggerPlugin::displayDebugger(m_snapshots.at(index));
debuggerCore()->displayDebugger(engineAt(index), true);
reset();
}