summaryrefslogtreecommitdiff
path: root/src/plugins/android/androiddebugsupport.cpp
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-05-27 15:44:02 +0200
committerhjk <hjk@theqtcompany.com>2015-05-29 09:19:16 +0000
commit6eada122a3b836bf08ac5f855fd3261332c2ae79 (patch)
tree80373d9de9c619270861b9fa69c141bc2400861a /src/plugins/android/androiddebugsupport.cpp
parent04733e35ec9043d01207122cb53d28a40e6011c5 (diff)
downloadqt-creator-6eada122a3b836bf08ac5f855fd3261332c2ae79.tar.gz
Use free Debugger::createDebuggerRunControl() function
Allows us to un-export DebuggerRunControlFactory in an attempt to slim down the publicly visible Debugger plugin interface Change-Id: I0c2e7351ffa7a9d16586172816635be8ff40172e Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com> Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: BogDan Vatra <bogdan@kde.org> Reviewed-by: David Schulz <david.schulz@theqtcompany.com> Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
Diffstat (limited to 'src/plugins/android/androiddebugsupport.cpp')
-rw-r--r--src/plugins/android/androiddebugsupport.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/android/androiddebugsupport.cpp b/src/plugins/android/androiddebugsupport.cpp
index 0b7f212272..3d29386dde 100644
--- a/src/plugins/android/androiddebugsupport.cpp
+++ b/src/plugins/android/androiddebugsupport.cpp
@@ -126,8 +126,7 @@ RunControl *AndroidDebugSupport::createDebugRunControl(AndroidRunConfiguration *
params.projectBuildDirectory = target->activeBuildConfiguration()->buildDirectory().toString();
}
- DebuggerRunControl * const debuggerRunControl
- = DebuggerRunControlFactory::doCreate(params, errorMessage);
+ DebuggerRunControl * const debuggerRunControl = createDebuggerRunControl(params, errorMessage);
new AndroidDebugSupport(runConfig, debuggerRunControl);
return debuggerRunControl;
}