From 5d38fc44ae73c73852a76cd764e01293477386cb Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Thu, 5 Mar 2009 12:44:59 +0100
Subject: [PATCH] Fixes:    debugger: surround the function name "main" in the
 menu with double quotes Details:  more consistent with the File menu

---
 src/plugins/debugger/debuggermanager.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/debugger/debuggermanager.cpp b/src/plugins/debugger/debuggermanager.cpp
index 349bc15ebc7..4dcab145555 100644
--- a/src/plugins/debugger/debuggermanager.cpp
+++ b/src/plugins/debugger/debuggermanager.cpp
@@ -353,7 +353,7 @@ void DebuggerManager::init()
     m_breakByFunctionAction->setText(tr("Set Breakpoint at Function..."));
 
     m_breakAtMainAction = new QAction(this);
-    m_breakAtMainAction->setText(tr("Set Breakpoint at Function 'main'"));
+    m_breakAtMainAction->setText(tr("Set Breakpoint at Function \"main\""));
 
     m_watchAction = new QAction(this);
     m_watchAction->setText(tr("Add to Watch Window"));
-- 
GitLab