aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/watchwindow.cpp
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@theqtcompany.com>2015-06-12 16:53:51 +0200
committerRobert Loehning <robert.loehning@theqtcompany.com>2015-06-16 09:19:59 +0000
commit1d353e6a1fc5b289666902b0f5f5ba074ea28367 (patch)
tree47fefd00ce066f749edb0b0c64e70c2eaab2ba1c /src/plugins/debugger/watchwindow.cpp
parentf967b58e872614458ce613199415b986c4a738e1 (diff)
Fix strings in debugger's menu
The menu items should end in "..." if and only if they open a new window, not a submenu. Change-Id: Ibf1bbbe8cc4d1ef6384bd76535644a61458530fd Reviewed-by: hjk <hjk@theqtcompany.com>
Diffstat (limited to 'src/plugins/debugger/watchwindow.cpp')
-rw-r--r--src/plugins/debugger/watchwindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/watchwindow.cpp b/src/plugins/debugger/watchwindow.cpp
index 39e1ecfadd..add255f040 100644
--- a/src/plugins/debugger/watchwindow.cpp
+++ b/src/plugins/debugger/watchwindow.cpp
@@ -748,11 +748,11 @@ void WatchTreeView::contextMenuEvent(QContextMenuEvent *ev)
actRemoveAllWatchExpression.setEnabled(canRemoveWatches
&& !handler->watchedExpressions().isEmpty());
- QMenu formatMenu(tr("Change Local Display Format..."));
+ QMenu formatMenu(tr("Change Local Display Format"));
if (mi0.isValid())
fillFormatMenu(&formatMenu, mi0);
- QMenu memoryMenu(tr("Open Memory Editor..."));
+ QMenu memoryMenu(tr("Open Memory Editor"));
QAction actOpenMemoryEditAtObjectAddress(0);
QAction actOpenMemoryEditAtPointerAddress(0);
QAction actOpenMemoryEditor(0);
@@ -805,7 +805,7 @@ void WatchTreeView::contextMenuEvent(QContextMenuEvent *ev)
}
QMenu breakpointMenu;
- breakpointMenu.setTitle(tr("Add Data Breakpoint..."));
+ breakpointMenu.setTitle(tr("Add Data Breakpoint"));
breakpointMenu.addAction(&actSetWatchpointAtObjectAddress);
breakpointMenu.addAction(&actSetWatchpointAtPointerAddress);
breakpointMenu.addAction(&actSetWatchpointAtExpression);