aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2014-10-15 14:45:31 +0200
committerhjk <[email protected]>2014-10-16 16:32:58 +0200
commitef563d8085752708d9b623ab50bc42cdd69a3262 (patch)
treed3581f2c1aa57e06c03414e280c5130755b72435 /src/plugins/debugger/debuggerplugin.cpp
parent89602419c45f4fcbab922c8b218f0602608d3a9b (diff)
MacroExpander: Fall back to global expander
... and use that all over the place. Change-Id: Ie6e0ed0f0d9eaba9b4466761e6b455f33a905086 Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index d0bce30168d..a7b233c15ad 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -3334,7 +3334,7 @@ bool boolSetting(int code)
QString stringSetting(int code)
{
QString raw = theDebuggerCore->m_debuggerSettings->item(code)->value().toString();
- return globalMacroExpander()->expandedString(raw);
+ return globalMacroExpander()->expand(raw);
}
QStringList stringListSetting(int code)