mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
73cf41b81e
* Translations load refactoring * Translations: Added MAC support * Translations: fixed getting of translation folders * Fixed code style, documented some methods
20 lines
488 B
C++
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;
|
|
}
|