From 33fba204289ac75aeae0cc6652e045f59d83aa4e Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Wed, 15 Dec 2010 14:48:03 +0100
Subject: [PATCH] debugger: change 'Format' to 'Display' in the l&w context
 menu

---
 src/plugins/debugger/watchwindow.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/plugins/debugger/watchwindow.cpp b/src/plugins/debugger/watchwindow.cpp
index de54efbdc87..571f68e772f 100644
--- a/src/plugins/debugger/watchwindow.cpp
+++ b/src/plugins/debugger/watchwindow.cpp
@@ -279,7 +279,7 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
     QAction *clearTypeFormatAction = 0;
     if (idx.isValid()) {
         typeFormatMenu.setTitle(
-            tr("Change Format for Type \"%1\"").arg(type));
+            tr("Change Display for Type \"%1\"").arg(type));
         if (alternativeFormats.isEmpty()) {
             typeFormatMenu.setEnabled(false);
         } else {
@@ -299,7 +299,7 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
             }
         }
     } else {
-        typeFormatMenu.setTitle(tr("Change Format for Type"));
+        typeFormatMenu.setTitle(tr("Change Display for Type"));
         typeFormatMenu.setEnabled(false);
     }
 
@@ -308,7 +308,7 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
     QAction *clearIndividualFormatAction = 0;
     if (idx.isValid()) {
         individualFormatMenu.setTitle(
-            tr("Change Format for Object Named \"%1\"").arg(mi0.data().toString()));
+            tr("Change Display for Object Named \"%1\"").arg(mi0.data().toString()));
         if (alternativeFormats.isEmpty()) {
             individualFormatMenu.setEnabled(false);
         } else {
@@ -329,7 +329,7 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
             }
         }
     } else {
-        individualFormatMenu.setTitle(tr("Change Format for Object"));
+        individualFormatMenu.setTitle(tr("Change Display for Object"));
         individualFormatMenu.setEnabled(false);
     }
 
-- 
GitLab