aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2014-06-05 17:49:51 +0200
committerhjk <[email protected]>2014-06-19 14:12:34 +0200
commite744649456844bef14251f855f45ebd61780bc2d (patch)
treecfd1a2dd54d7a4cf3a78ceb8e6084f6ec5f7e4f4 /src/plugins/debugger/debuggerplugin.cpp
parent7d45a1a1c5253b9d37dafe3fcfc277c134b2da7a (diff)
Debugger: Add VariableSupport to some text fields
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp3
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