1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

Removed OpenPilot reference in About Menu

This commit is contained in:
Paul Jewell 2015-07-16 23:25:32 +01:00
parent 402d9a0c64
commit d4d8a6fa5c
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
TEMPLATE = lib
TARGET = Core
DEFINES += CORE_LIBRARY
DEFINES += ORG_BIG_NAME=$$shell_quote(\"$$ORG_BIG_NAME\")
QT += qml \
quick \
xml \

View File

@ -747,7 +747,7 @@ void MainWindow::registerDefaultActions()
connect(tmpaction, SIGNAL(triggered()), this, SLOT(aboutPlugins()));
// Credits Action
tmpaction = new QAction(QIcon(Constants::ICON_PLUGIN), tr("About &OpenPilot..."), this);
tmpaction = new QAction(QIcon(Constants::ICON_PLUGIN), tr("About &%1...").arg(ORG_BIG_NAME), this);
cmd = am->registerAction(tmpaction, Constants::ABOUT_AUTHORS, m_globalContext);
mhelp->addAction(cmd, Constants::G_HELP_ABOUT);
tmpaction->setEnabled(true);