Skip to content
Snippets Groups Projects
Commit 7b49fdea authored by hjk's avatar hjk
Browse files

compile fixes

parent 61c786c8
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,8 @@ class QPlainTextEdit;
class QLineEdit;
class QPushButton;
QT_END_NAMESPACE
namespace Core {
class IContext;
}
......@@ -100,7 +102,5 @@ private:
QDeclarativeDebugObjectReference m_objectAtLastFocus;
};
QT_END_NAMESPACE
#endif
......@@ -53,10 +53,10 @@ class WatchTableModel;
class WatchTableView;
class ObjectPropertiesView;
class CanvasFrameRate;
class ExpressionQueryWidget;
QT_END_NAMESPACE
class ExpressionQueryWidget;
namespace Core {
class IContext;
}
......
......@@ -105,7 +105,7 @@ bool QmlInspectorPlugin::initialize(const QStringList &arguments, QString *error
m_inspector = new QmlInspector;
addObject(m_inspector);
core->addContextObject(m_inspector->context());
Core::ICore::instance()->addContextObject(m_inspector->context());
connect(m_connectionTimer, SIGNAL(timeout()), SLOT(pollInspector()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment