summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-03-14 20:40:15 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-03-14 20:40:15 (GMT)
commit5319fd7388a0603acfe8174cd2d558effff6af4b (patch)
tree7e7acc90e6a48d7cc6f862318c24db006f0014ab /Swift/QtUI
parentaecc266b2084cb231655c92c53f95404306a7fa7 (diff)
downloadswift-5319fd7388a0603acfe8174cd2d558effff6af4b.zip
swift-5319fd7388a0603acfe8174cd2d558effff6af4b.tar.bz2
Fixed conflicting shortcut strings.
Diffstat (limited to 'Swift/QtUI')
-rw-r--r--Swift/QtUI/QtMainWindow.cpp4
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);