From 89bff3fa5d58aeb0d507d633aa058d781f06a8c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=20=EA=A6=AB=EA=A6=B6=20=EA=A6=8F=EA=A7=80?= =?UTF-8?q?=EA=A6=A6=EA=A6=BF=20=EA=A6=A7=20=EA=A6=AE=20=EA=A6=91=20?= =?UTF-8?q?=EA=A6=A9=20=EA=A6=AD=EA=A7=80?= Date: Thu, 5 Sep 2019 21:21:52 +0800 Subject: Connected a more straightforward signal to login --- controller.cxx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'controller.cxx') diff --git a/controller.cxx b/controller.cxx index 015d4ac..4e518f4 100644 --- a/controller.cxx +++ b/controller.cxx @@ -1,20 +1,17 @@ #include "worker.hxx" #include "controller.hxx" -Controller::Controller() +Controller::Controller(QObject* parent) : + QObject{parent} { Worker* worker = new Worker{}; worker->moveToThread(&thread); connect(&thread, &QThread::finished, worker, &QObject::deleteLater); - connect(this, &Controller::credentialsObtained, worker, &Worker::logIn); + connect(parent, SIGNAL(logIn(QString, QString)), + worker, SLOT(logIn(QString, QString))); thread.start(); } -void Controller::logIn(QString const& name, QString const& password) -{ - emit credentialsObtained(name, password); -} - Controller::~Controller() { thread.quit(); -- cgit v1.2.3