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 /controller.cxx | |
parent | 2f827a26779c83d7fbc8683d9d42f98a2fd45db1 (diff) |
User singleton instantiation can be moved to Controller
like the rest
Diffstat (limited to 'controller.cxx')
-rw-r--r-- | controller.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/controller.cxx b/controller.cxx index 6be4f40..2e562bf 100644 --- a/controller.cxx +++ b/controller.cxx @@ -21,7 +21,14 @@ Controller::Controller(QObject* parent) : QObject{parent} connect(worker, SIGNAL(logged(rt_user*)), loginView, SLOT(pushProfile())); connect(loginView, SIGNAL(search(QString)), worker, SLOT(search(QString))); - auto user = engine->singletonInstance<User*>(User::typeId); + auto typeId = qmlRegisterSingletonType<User>("KelakonUser", 0, 1, "User" + , [](QQmlEngine *engine, + QJSEngine *scriptEngine) -> QObject* { + Q_UNUSED(engine) + Q_UNUSED(scriptEngine) + return new User; + }); + auto user = engine->singletonInstance<User*>(typeId); connect(worker, SIGNAL(logged(rt_user*)), user, SLOT(update(rt_user*))); taskList = new TaskList; |