cutter/src/Main.cpp
a1ext 73cf41b81e Translations deployment for MAC & Linux has fixed (#1119)
* Translations load refactoring

* Translations: Added MAC support

* Translations: fixed getting of translation folders

* Fixed code style, documented some methods
2019-01-20 19:00:23 +02:00

20 lines
488 B
C++

#include "CutterApplication.h"
#include "MainWindow.h"
int main(int argc, char *argv[])
{
qRegisterMetaType<QList<StringDescription>>();
qRegisterMetaType<QList<FunctionDescription>>();
// Application info setup, required to be set before any instance of QSettings will be instantiated
QCoreApplication::setOrganizationName("Cutter");
QCoreApplication::setApplicationName("Cutter");
CutterApplication a(argc, argv);
int ret = a.exec();
return ret;
}