diff options
| author | hjk <hjk121@nokiamail.com> | 2014-10-17 13:40:04 +0200 |
|---|---|---|
| committer | hjk <hjk121@nokiamail.com> | 2014-10-20 10:23:56 +0200 |
| commit | 55b2bb16dccc68010e855da48e8a8f6c25a3527a (patch) | |
| tree | c270a4f050a223973580a4689962fa3d1f3c2e4b /src/plugins/ios/iosdebugsupport.cpp | |
| parent | ca9ed45016ad16042dd59d44b1ea100661293c36 (diff) | |
| download | qt-creator-55b2bb16dccc68010e855da48e8a8f6c25a3527a.tar.gz | |
Debugger: Consolidate RunControl creation
Export factory, de-export plugin, to remove one indirection
Change-Id: I13a46460d07d5ded6b26f2b5ceccd01142fb10e8
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
Diffstat (limited to 'src/plugins/ios/iosdebugsupport.cpp')
| -rw-r--r-- | src/plugins/ios/iosdebugsupport.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/ios/iosdebugsupport.cpp b/src/plugins/ios/iosdebugsupport.cpp index c4024df523..e8bed4554a 100644 --- a/src/plugins/ios/iosdebugsupport.cpp +++ b/src/plugins/ios/iosdebugsupport.cpp @@ -37,7 +37,7 @@ #include <debugger/debuggerengine.h> #include <debugger/debuggerplugin.h> #include <debugger/debuggerkitinformation.h> -#include <debugger/debuggerrunner.h> +#include <debugger/debuggerruncontrol.h> #include <debugger/debuggerstartparameters.h> #include <debugger/debuggerrunconfigurationaspect.h> #include <projectexplorer/toolchain.h> @@ -171,7 +171,7 @@ RunControl *IosDebugSupport::createDebugRunControl(IosRunConfiguration *runConfi } DebuggerRunControl * const debuggerRunControl - = DebuggerPlugin::createDebugger(params, runConfig, errorMessage); + = DebuggerRunControlFactory::doCreate(params, runConfig, errorMessage); if (debuggerRunControl) new IosDebugSupport(runConfig, debuggerRunControl, cppDebug, qmlDebug); return debuggerRunControl; |
