Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
a7945715
Commit
a7945715
authored
Dec 03, 2010
by
hjk
Browse files
debugger: compile hot fix
parent
227c75ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qmljsinspector/qmljsinspectorplugin.cpp
View file @
a7945715
...
...
@@ -35,7 +35,6 @@
#include
<debugger/debuggerconstants.h>
#include
<debugger/qml/qmladapter.h>
#include
<debugger/qml/qmlengine.h>
#include
<qmlprojectmanager/qmlproject.h>
#include
<qmljseditor/qmljseditorconstants.h>
...
...
@@ -135,10 +134,8 @@ void InspectorPlugin::objectAdded(QObject *object)
return
;
}
Debugger
::
QmlEngine
*
engine
=
qobject_cast
<
Debugger
::
QmlEngine
*>
(
object
);
if
(
engine
)
{
m_inspectorUi
->
setDebuggerEngine
(
engine
);
}
if
(
object
->
objectName
()
==
QLatin1String
(
"QmlEngine"
))
m_inspectorUi
->
setDebuggerEngine
(
object
);
}
void
InspectorPlugin
::
aboutToRemoveObject
(
QObject
*
obj
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment