aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggeractions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/debugger/debuggeractions.cpp')
-rw-r--r--src/plugins/debugger/debuggeractions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp
index f47dc28937..631bb88154 100644
--- a/src/plugins/debugger/debuggeractions.cpp
+++ b/src/plugins/debugger/debuggeractions.cpp
@@ -87,7 +87,7 @@ void GlobalDebuggerOptions::fromSettings()
const QString key = s->value(sourcePathMappingSourceKey).toString();
const QString value = s->value(sourcePathMappingTargetKey).toString();
if (key.startsWith('('))
- sourcePathRegExpMap.append(qMakePair(QRegExp(key), value));
+ sourcePathRegExpMap.append(qMakePair(QRegularExpression(key), value));
else
sourcePathMap.insert(key, value);
}
@@ -169,7 +169,7 @@ DebuggerSettings::DebuggerSettings()
item->setCheckable(true);
item->setDefaultValue(true);
item->setSettingsKey(debugModeGroup, "AutoDerefPointers");
- item->setToolTip(tr("<p>This switches the Locals and Expressions view to "
+ item->setToolTip(tr("<p>This switches the Locals and Expressions views to "
"automatically dereference pointers. This saves a level in the "
"tree view, but also loses data for the now-missing intermediate "
"level."));
@@ -587,7 +587,7 @@ DebuggerSettings::DebuggerSettings()
item = new SavedAction;
item->setSettingsKey(debugModeGroup, "DisplayStringLimit");
item->setToolTip(tr("<p>The maximum length of string entries in the "
- "Locals and Expressions pane. Longer than that are cut off "
+ "Locals and Expressions views. Longer than that are cut off "
"and displayed with an ellipsis attached."));
item->setDefaultValue(100);
insertItem(DisplayStringLimit, item);