Skip to content
Snippets Groups Projects
Commit 1c3d18c0 authored by lm's avatar lm
Browse files

name now in config

parent c3919109
Branches
No related tags found
No related merge requests found
......@@ -40,6 +40,7 @@ This file is part of the PIXHAWK project
#include <QStyleFactory>
#include <QAction>
#include "configuration.h"
#include "Core.h"
#include "MG.h"
#include "MainWindow.h"
......@@ -61,9 +62,9 @@ This file is part of the PIXHAWK project
Core::Core(int &argc, char* argv[]) : QApplication(argc, argv)
{
this->setApplicationName("QGroundControl");
this->setApplicationVersion("v. 0.7.5 (Beta)");
this->setOrganizationName(QLatin1String("OpenMAV Association"));
this->setApplicationName(QGC_APPLICATION_NAME);
this->setApplicationVersion(QGC_APPLICATION_VERSION);
this->setOrganizationName(QLatin1String("PIXHAWK Association Zurich"));
this->setOrganizationDomain("http://qgroundcontrol.org");
// Show splash screen
......
......@@ -11,4 +11,7 @@
#define WITH_TEXT_TO_SPEECH 1
#define QGC_APPLICATION_NAME "QGroundControl"
#define QGC_APPLICATION_VERSION "v. 0.7.6 (Beta)"
#endif // CONFIGURATION_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment