aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeena Miettinen <[email protected]>2014-07-14 14:46:34 +0200
committerhjk <[email protected]>2014-07-14 14:52:43 +0200
commite1650b5c46b4efe2be976039ec6ee121359eae11 (patch)
tree82323540a02c2fca4879aa141ac9e77347614a04 /src
parenta48b22678448f79ea3a4aa05723b054392a2b139 (diff)
Debugger: replace "maximal" with "maximum"
Diffstat (limited to 'src')
-rw-r--r--src/plugins/debugger/debuggeractions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp
index 4fbbecb1ba6..913febe699c 100644
--- a/src/plugins/debugger/debuggeractions.cpp
+++ b/src/plugins/debugger/debuggeractions.cpp
@@ -585,7 +585,7 @@ DebuggerSettings::DebuggerSettings()
item = new SavedAction(this);
item->setSettingsKey(debugModeGroup, QLatin1String("DisplayStringLimit"));
- item->setToolTip(tr("The maximal length of string entries in the "
+ item->setToolTip(tr("The maximum length of string entries in the "
"Locals and Expressions pane. Longer than that are cut off "
"and displayed with an ellipsis attached."));
item->setDefaultValue(100);
@@ -593,7 +593,7 @@ DebuggerSettings::DebuggerSettings()
item = new SavedAction(this);
item->setSettingsKey(debugModeGroup, QLatin1String("MaximalStringLength"));
- item->setToolTip(tr("The maximal length for strings in separated windows. "
+ item->setToolTip(tr("The maximum length for strings in separated windows. "
"Longer strings are cut off and displayed with an ellipsis attached."));
item->setDefaultValue(10000);
insertItem(MaximalStringLength, item);