diff options
author | hjk <[email protected]> | 2014-06-05 17:49:51 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2014-06-19 14:12:34 +0200 |
commit | e744649456844bef14251f855f45ebd61780bc2d (patch) | |
tree | cfd1a2dd54d7a4cf3a78ceb8e6084f6ec5f7e4f4 /src/plugins/debugger/debuggerplugin.cpp | |
parent | 7d45a1a1c5253b9d37dafe3fcfc277c134b2da7a (diff) |
Debugger: Add VariableSupport to some text fields
Change-Id: Iba1e7d2eeb49600a9952c369f66187384aa8cbf2
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 05186ab41a1..89b2de50aeb 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -3376,7 +3376,8 @@ bool DebuggerPluginPrivate::boolSetting(int code) const QString DebuggerPluginPrivate::stringSetting(int code) const { - return m_debuggerSettings->item(code)->value().toString(); + QString raw = m_debuggerSettings->item(code)->value().toString(); + return VariableManager::expandedString(raw); } QStringList DebuggerPluginPrivate::stringListSetting(int code) const |