diff options
author | hjk <[email protected]> | 2014-10-15 14:45:31 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2014-10-16 16:32:58 +0200 |
commit | ef563d8085752708d9b623ab50bc42cdd69a3262 (patch) | |
tree | d3581f2c1aa57e06c03414e280c5130755b72435 /src/plugins/debugger/debuggerplugin.cpp | |
parent | 89602419c45f4fcbab922c8b218f0602608d3a9b (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.cpp | 2 |
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) |