diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-03-14 20:40:15 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-03-14 20:40:15 (GMT) |
commit | 5319fd7388a0603acfe8174cd2d558effff6af4b (patch) | |
tree | 7e7acc90e6a48d7cc6f862318c24db006f0014ab /Swift/QtUI | |
parent | aecc266b2084cb231655c92c53f95404306a7fa7 (diff) | |
download | swift-5319fd7388a0603acfe8174cd2d558effff6af4b.zip swift-5319fd7388a0603acfe8174cd2d558effff6af4b.tar.bz2 |
Fixed conflicting shortcut strings.
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/QtMainWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtMainWindow.cpp b/Swift/QtUI/QtMainWindow.cpp index fb629cd..bb661fb 100644 --- a/Swift/QtUI/QtMainWindow.cpp +++ b/Swift/QtUI/QtMainWindow.cpp @@ -83,10 +83,10 @@ QtMainWindow::QtMainWindow(QtSettingsProvider* settings, UIEventStream* uiEventS QMenu* actionsMenu = new QMenu(tr("&Actions"), this); menus_.push_back(actionsMenu); - QAction* editProfileAction = new QAction(tr("&Edit Profile"), this); + QAction* editProfileAction = new QAction(tr("Edit &Profile"), this); connect(editProfileAction, SIGNAL(triggered()), SLOT(handleEditProfileAction())); actionsMenu->addAction(editProfileAction); - QAction* joinMUCAction = new QAction(tr("&Enter Room"), this); + QAction* joinMUCAction = new QAction(tr("Enter &Room"), this); connect(joinMUCAction, SIGNAL(triggered()), SLOT(handleJoinMUCAction())); actionsMenu->addAction(joinMUCAction); addUserAction_ = new QAction(tr("&Add Contact"), this); |