debugger: change ' to " in locals context menu

This commit is contained in:
hjk
2010-03-29 17:45:55 +02:00
parent 53d2e69230
commit 89196e5c6a

View File

@@ -224,7 +224,7 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
QList<QAction *> typeFormatActions;
if (idx.isValid()) {
typeFormatMenu.setTitle(
tr("Change Format for Type '%1'").arg(type));
tr("Change Format for Type \"%1\"").arg(type));
if (alternativeFormats.isEmpty()) {
typeFormatMenu.setEnabled(false);
} else {