Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2009-07-15 21:00:32 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2009-07-15 21:00:32 +0400
commit12e0e8048d37e768cbbe8558c205b78d7862c28a (patch)
treeaf8aa81c87cc497abe6d42982cf19a679bf53bd9 /src/murmur/Tray.cpp
parent6582af7d3ce90b1626ebd41febff342be82fcae2 (diff)
Reorder murmur tray menu
Diffstat (limited to 'src/murmur/Tray.cpp')
-rw-r--r--src/murmur/Tray.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/murmur/Tray.cpp b/src/murmur/Tray.cpp
index 7dc7fcaa5..e66228518 100644
--- a/src/murmur/Tray.cpp
+++ b/src/murmur/Tray.cpp
@@ -51,9 +51,9 @@ Tray::Tray(QObject *p, LogEmitter *logger) : QObject(p) {
// Can't construct a QMenu which decends from QObject, and qsti is a QObject.
// Qt bug?
qm = new QMenu(tr("Murmur"), NULL);
- qm->addAction(qaQuit);
- qm->addSeparator();
qm->addAction(qaShowLog);
+ qm->addSeparator();
+ qm->addAction(qaQuit);
qsti->setContextMenu(qm);
qsti->show();