Debugger: Move DebuggerEngine/QmlEngine/QmlCppEngine into Debugger{}

namespace (from Debugger::Internal) as they are exported classes.
Introduce private classes to avoid exposing private JS debugger
headers.
This commit is contained in:
Friedemann Kleint
2010-09-13 13:30:35 +02:00
parent 6dec1c6ffd
commit f7b19f8114
31 changed files with 618 additions and 450 deletions

View File

@@ -164,7 +164,7 @@ void InspectorUi::restoreSettings()
m_settings->restoreSettings(Core::ICore::instance()->settings());
}
void InspectorUi::setDebuggerEngine(Debugger::Internal::QmlEngine *qmlEngine)
void InspectorUi::setDebuggerEngine(Debugger::QmlEngine *qmlEngine)
{
if (m_qmlEngine && !qmlEngine) {
disconnect(m_qmlEngine, SIGNAL(tooltipRequested(QPoint, TextEditor::ITextEditor*, int)),
@@ -178,7 +178,7 @@ void InspectorUi::setDebuggerEngine(Debugger::Internal::QmlEngine *qmlEngine)
}
}
Debugger::Internal::QmlEngine *InspectorUi::debuggerEngine() const
Debugger::QmlEngine *InspectorUi::debuggerEngine() const
{
return m_qmlEngine;
}