diff options
author | Tobias Hunger <[email protected]> | 2013-03-27 13:03:15 +0100 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2013-04-05 14:56:25 +0200 |
commit | 533644290fb5c0f511085eb9a9648f38c8497635 (patch) | |
tree | 14891878a62ca34c4f960702561aa22541f4dde5 /src/plugins/android/androidrunner.cpp | |
parent | e474b6ed8f52d8416af250072434d3a11c184172 (diff) |
Move DebuggerRunConfigurationAspect into Debugger
Change-Id: I03cab5d963a6d7c77171efe360a552d8109f6a8b
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/android/androidrunner.cpp')
-rw-r--r-- | src/plugins/android/androidrunner.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/android/androidrunner.cpp b/src/plugins/android/androidrunner.cpp index 8eda8284573..409a77a5560 100644 --- a/src/plugins/android/androidrunner.cpp +++ b/src/plugins/android/androidrunner.cpp @@ -35,6 +35,7 @@ #include "androidrunconfiguration.h" #include "androidmanager.h" +#include <debugger/debuggerrunconfigurationaspect.h> #include <projectexplorer/target.h> #include <QTime> @@ -46,8 +47,8 @@ namespace Internal { AndroidRunner::AndroidRunner(QObject *parent, AndroidRunConfiguration *runConfig, bool debuggingMode) : QThread(parent) { - ProjectExplorer::DebuggerRunConfigurationAspect *aspect - = runConfig->extraAspect<ProjectExplorer::DebuggerRunConfigurationAspect>(); + Debugger::DebuggerRunConfigurationAspect *aspect + = runConfig->extraAspect<Debugger::DebuggerRunConfigurationAspect>(); m_useCppDebugger = debuggingMode && aspect->useCppDebugger(); m_useQmlDebugger = debuggingMode && aspect->useQmlDebugger(); m_remoteGdbChannel = runConfig->remoteChannel(); |