aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmldebug/qmldebugcommandlinearguments.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/qmldebug/qmldebugcommandlinearguments.h')
-rw-r--r--src/libs/qmldebug/qmldebugcommandlinearguments.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libs/qmldebug/qmldebugcommandlinearguments.h b/src/libs/qmldebug/qmldebugcommandlinearguments.h
index f69fec2f9bd..b21ceb5fc76 100644
--- a/src/libs/qmldebug/qmldebugcommandlinearguments.h
+++ b/src/libs/qmldebug/qmldebugcommandlinearguments.h
@@ -25,9 +25,10 @@
#pragma once
-#include <coreplugin/id.h>
#include <projectexplorer/projectexplorerconstants.h>
+#include <utils/id.h>
+
#include <QString>
#include <QUrl>
@@ -88,7 +89,7 @@ inline QString qmlDebugLocalArguments(QmlDebugServicesPreset services, const QSt
return qmlDebugCommandLineArguments(services, QLatin1String("file:") + socket, block);
}
-inline Core::Id runnerIdForRunMode(Core::Id runMode)
+inline Utils::Id runnerIdForRunMode(Utils::Id runMode)
{
if (runMode == ProjectExplorer::Constants::QML_PROFILER_RUN_MODE)
return ProjectExplorer::Constants::QML_PROFILER_RUNNER;
@@ -97,7 +98,7 @@ inline Core::Id runnerIdForRunMode(Core::Id runMode)
return {};
}
-inline QmlDebugServicesPreset servicesForRunMode(Core::Id runMode)
+inline QmlDebugServicesPreset servicesForRunMode(Utils::Id runMode)
{
if (runMode == ProjectExplorer::Constants::QML_PROFILER_RUN_MODE)
return QmlDebug::QmlProfilerServices;