Moved Qml Inspector Output pane to a dock widget within the debugger.

This commit is contained in:
Lasse Holmstedt
2010-02-17 12:33:31 +01:00
parent a2f1889c0b
commit f38ff9648e
7 changed files with 71 additions and 132 deletions

View File

@@ -28,7 +28,6 @@
**************************************************************************/
#include "qmlinspectorconstants.h"
#include "qmlinspector.h"
#include "inspectoroutputpane.h"
#include "qmlinspectorplugin.h"
#include <debugger/debuggeruiswitcher.h>
@@ -89,10 +88,6 @@ QmlInspectorPlugin::~QmlInspectorPlugin()
void QmlInspectorPlugin::shutdown()
{
removeObject(m_outputPane);
delete m_outputPane;
m_outputPane = 0;
removeObject(m_inspector);
delete m_inspector;
m_inspector = 0;
@@ -115,12 +110,6 @@ bool QmlInspectorPlugin::initialize(const QStringList &arguments, QString *error
connect(m_connectionTimer, SIGNAL(timeout()), SLOT(pollInspector()));
m_outputPane = new InspectorOutputPane;
addObject(m_outputPane);
connect(m_inspector, SIGNAL(statusMessage(QString)),
m_outputPane, SLOT(addInspectorStatus(QString)));
return true;
}