diff options
author | Tobias Hunger <[email protected]> | 2012-01-13 16:50:08 +0100 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2012-01-19 15:34:46 +0100 |
commit | 7ad7886b071563dc5f8b449326f3fccff7636ba7 (patch) | |
tree | d79d140d55cfe0de492a159a0651652c2d4a4005 /src/plugins/debugger/debuggerplugin.cpp | |
parent | fa26b986ded4d3af29a21e24453a224a92a0ebc8 (diff) |
TC: Use FileName for debuggerCommand()
Change-Id: Ifa168b95d290bfae5c342981c4e4556d6f6913eb
Reviewed-by: Daniel Teske <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index f10fd3c9018..d14f0e308d7 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -2804,7 +2804,7 @@ QString DebuggerPluginPrivate::debuggerForAbi(const Abi &abi, DebuggerEngineType ToolChainManager::instance()->findToolChains(searchAbi); // Find manually configured ones first for (int i = toolchains.size() - 1; i >= 0; i--) { - const QString debugger = toolchains.at(i)->debuggerCommand(); + const QString debugger = toolchains.at(i)->debuggerCommand().toString(); if (debug) qDebug() << i << toolchains.at(i)->displayName() << debugger; if (!debugger.isEmpty()) |