Skip to content
Snippets Groups Projects
Commit 9ed0adb7 authored by akiraohgaki's avatar akiraohgaki
Browse files

Use QApplication

parent 967d1c16
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
#include <QTranslator>
#include <QLocale>
#include <QCommandLineParser>
#include <QGuiApplication>
#include <QApplication>
#include <QIcon>
#include <QQmlApplicationEngine>
#include <QQmlContext>
......@@ -16,7 +16,7 @@
int main(int argc, char *argv[])
{
// Init
QGuiApplication app(argc, argv);
QApplication app(argc, argv);
ConfigHandler *configHandler = new ConfigHandler();
QJsonObject appConfigApplication = configHandler->getAppConfigApplication();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment