Labelling consistency

Reviewed-by: Oswald Buddenhagen
This commit is contained in:
mae
2010-05-07 16:20:40 +02:00
parent 495b7bff45
commit bc7d853216
2 changed files with 2 additions and 2 deletions

View File

@@ -177,7 +177,7 @@ void ModeManager::objectAdded(QObject *obj)
ActionManager *am = d->m_mainWindow->actionManager();
const QString shortcutId = QLatin1String("QtCreator.Mode.") + mode->id();
QShortcut *shortcut = new QShortcut(d->m_mainWindow);
shortcut->setWhatsThis(tr("Switch to %1 mode").arg(mode->displayName()));
shortcut->setWhatsThis(tr("Switch to %1 Mode").arg(mode->displayName()));
Command *cmd = am->registerShortcut(shortcut, shortcutId, QList<int>() << Constants::C_GLOBAL_ID);
d->m_modeShortcuts.insert(index, cmd);