Fixes: debugger: surround the function name "main" in the menu with double quotes

Details:  more consistent with the File menu
This commit is contained in:
hjk
2009-03-05 12:44:59 +01:00
parent 2f41680a6e
commit 5d38fc44ae

View File

@@ -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"));