diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-14 07:02:48 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-14 07:02:48 +0800 |
commit | db6374681a2bc35671fa0c25fc740888a869ccd4 (patch) | |
tree | e2d52c6821356f7fa988470a9557af2966535deb /main.cxx | |
parent | 2f827a26779c83d7fbc8683d9d42f98a2fd45db1 (diff) |
User singleton instantiation can be moved to Controller
like the rest
Diffstat (limited to 'main.cxx')
-rw-r--r-- | main.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -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(); } |