diff options
author | hjk <[email protected]> | 2019-03-25 15:31:43 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2019-04-02 09:46:48 +0000 |
commit | 841bbfa7bf2575769d7dfec2d1f238cd65aacf5d (patch) | |
tree | 8dd8095ac57f9edbe7ffc81db33aa64aae44e1a4 /src/plugins/android/androidplugin.cpp | |
parent | 73fbaea03624f1ef05a576d19f66291cc92fbf3c (diff) |
ProjectExplorer: Switch order of template parameters
... of SimpleRunWorkerFactory.
This requires being explicit about the SimpleTargetRunner worker
default, but makes the template re-usable for current users of
RunWorker::registerWorker() which I would like to phase out now,
for less variations in the RunWorkerFactory setup.
Change-Id: I32638437e5bb29f143650f5fde706711ab25accf
Reviewed-by: Christian Stenger <[email protected]>
Reviewed-by: Christian Kandeler <[email protected]>
Diffstat (limited to 'src/plugins/android/androidplugin.cpp')
-rw-r--r-- | src/plugins/android/androidplugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/android/androidplugin.cpp b/src/plugins/android/androidplugin.cpp index 27b3ae99bc3..29f4392712c 100644 --- a/src/plugins/android/androidplugin.cpp +++ b/src/plugins/android/androidplugin.cpp @@ -151,12 +151,12 @@ public: AndroidManifestEditorFactory manifestEditorFactory; AndroidRunConfigurationFactory runConfigFactory; - SimpleRunWorkerFactory<AndroidRunConfiguration, AndroidRunSupport> runWorkerFactory; - SimpleRunWorkerFactory<AndroidRunConfiguration, AndroidDebugSupport> + SimpleRunWorkerFactory<AndroidRunSupport, AndroidRunConfiguration> runWorkerFactory; + SimpleRunWorkerFactory<AndroidDebugSupport, AndroidRunConfiguration> debugWorkerFactory{DEBUG_RUN_MODE}; - SimpleRunWorkerFactory<AndroidRunConfiguration, AndroidQmlToolingSupport> + SimpleRunWorkerFactory<AndroidQmlToolingSupport, AndroidRunConfiguration> profilerWorkerFactory{QML_PROFILER_RUN_MODE}; - SimpleRunWorkerFactory<AndroidRunConfiguration, AndroidQmlToolingSupport> + SimpleRunWorkerFactory<AndroidQmlToolingSupport, AndroidRunConfiguration> qmlPreviewWorkerFactory{QML_PREVIEW_RUN_MODE}; QmlPreviewRunWorkerFactory qmlPreviewWorkerFactory2; |