diff options
| author | Ulf Hermann <ulf.hermann@theqtcompany.com> | 2015-07-14 14:45:50 +0200 |
|---|---|---|
| committer | Ulf Hermann <ulf.hermann@theqtcompany.com> | 2015-08-04 13:34:26 +0000 |
| commit | 2c0ed9491e55bdc96bc2deb5ec3c40df6e3271f6 (patch) | |
| tree | 029e73dddfb3202acbc2ce862fb68b8ff85146ae /src/qml/debugger/qqmldebugconnector.cpp | |
| parent | 4e6de08ba154e541587b2939137a3da1081750be (diff) | |
Extract minimal abstract interfaces from debug services.
We will access the services' functionality through those interfaces
once they live in their own plugins.
Change-Id: I0a0d7e73c07cb874b3b507cc4a9d304588c87bca
Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/debugger/qqmldebugconnector.cpp')
| -rw-r--r-- | src/qml/debugger/qqmldebugconnector.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/debugger/qqmldebugconnector.cpp b/src/qml/debugger/qqmldebugconnector.cpp index eb111f75d0..3157c0912c 100644 --- a/src/qml/debugger/qqmldebugconnector.cpp +++ b/src/qml/debugger/qqmldebugconnector.cpp @@ -105,12 +105,12 @@ QQmlDebugConnector *QQmlDebugConnector::instance() } params->instance = loadQQmlDebugConnector(QLatin1String("QQmlDebugServer")); if (params->instance) { - QQmlEngineDebugService::instance(); - QV4DebugService::instance(); - QQmlProfilerService::instance(); + QQmlEngineDebugServiceImpl::instance(); + QV4DebugServiceImpl::instance(); + QQmlProfilerServiceImpl::instance(); QDebugMessageService::instance(); QQmlEngineControlService::instance(); - QQmlInspectorService::instance(); + QQmlInspectorServiceImpl::instance(); } } |
