diff --git a/doc/src/debugger/creator-debugger.qdoc b/doc/src/debugger/creator-debugger.qdoc index 9fb1fb74e99..5c101505620 100644 --- a/doc/src/debugger/creator-debugger.qdoc +++ b/doc/src/debugger/creator-debugger.qdoc @@ -714,7 +714,7 @@ a compact option using the \c{name} column for keys, resulting in a concise display of containers with short keys, such as numbers or short strings. For example, to expand all the values of QMap, select - \uicontrol {Change Local Display Format} > \uicontrol Compact. + \uicontrol {Change Value Display Format} > \uicontrol Compact. You can use the \uicontrol {Locals and Expressions} view to change the contents of variables of simple data types, for example, \c int, \c float, diff --git a/src/plugins/debugger/watchwindow.cpp b/src/plugins/debugger/watchwindow.cpp index add255f040e..a50d76e991a 100644 --- a/src/plugins/debugger/watchwindow.cpp +++ b/src/plugins/debugger/watchwindow.cpp @@ -748,7 +748,7 @@ void WatchTreeView::contextMenuEvent(QContextMenuEvent *ev) actRemoveAllWatchExpression.setEnabled(canRemoveWatches && !handler->watchedExpressions().isEmpty()); - QMenu formatMenu(tr("Change Local Display Format")); + QMenu formatMenu(tr("Change Value Display Format")); if (mi0.isValid()) fillFormatMenu(&formatMenu, mi0);