summaryrefslogtreecommitdiff
path: root/main.cxx
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-14 07:02:48 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-14 07:02:48 +0800
commitdb6374681a2bc35671fa0c25fc740888a869ccd4 (patch)
treee2d52c6821356f7fa988470a9557af2966535deb /main.cxx
parent2f827a26779c83d7fbc8683d9d42f98a2fd45db1 (diff)
User singleton instantiation can be moved to Controller
like the rest
Diffstat (limited to 'main.cxx')
-rw-r--r--main.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/main.cxx b/main.cxx
index 1ae0467..23f9e4d 100644
--- a/main.cxx
+++ b/main.cxx
@@ -1,6 +1,5 @@
#include <QGuiApplication>
#include <QQmlApplicationEngine>
-#include "user.hxx"
#include "controller.hxx"
int main(int argc, char* argv[])
@@ -8,17 +7,7 @@ int main(int argc, char* argv[])
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
-
- User::typeId = qmlRegisterSingletonType<User>("KelakonUser", 0, 1, "User"
- , [](QQmlEngine *engine,
- QJSEngine *scriptEngine) -> QObject* {
- Q_UNUSED(engine)
- Q_UNUSED(scriptEngine)
- return new User;
- });
-
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
Controller controller{&engine};
-
return app.exec();
}