From 37f0d645fdd4907164851603afb57a5990bede5b Mon Sep 17 00:00:00 2001 From: Manuel Dobusch Date: Wed, 1 Feb 2017 21:42:54 +0100 Subject: [PATCH] ui: 3rd party licences Updated menu entry title to '3rd party licences' --- src/lib_gui/qt/window/QtMainWindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib_gui/qt/window/QtMainWindow.cpp b/src/lib_gui/qt/window/QtMainWindow.cpp index 28958b47..7e6e8189 100644 --- a/src/lib_gui/qt/window/QtMainWindow.cpp +++ b/src/lib_gui/qt/window/QtMainWindow.cpp @@ -664,7 +664,10 @@ void QtMainWindow::setupHelpMenu() menu->addAction(tr("Documentation"), this, SLOT(showDocumentation())); menu->addAction(tr("Bug Tracker"), this, SLOT(showBugtracker())); menu->addAction(tr("Enter License..."), this, SLOT(enterLicense())); - menu->addAction(tr("Licences"), this, SLOT(showLicenses())); + + menu->addSeparator(); + + menu->addAction(tr("3rd Party Licences"), this, SLOT(showLicenses())); menu->addAction(tr("&About Coati"), this, SLOT(about())); menu->addSeparator();