aboutsummaryrefslogtreecommitdiff
path: root/src/qt/intro.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2018-09-18 01:17:22 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-01-10 01:21:18 +0200
commit1c0e0a5e38102a67cb66cf6eef4098bdb64bb0f5 (patch)
treedcbac450d88cea65cd0cf1d57daf2642022d7178 /src/qt/intro.cpp
parent5da08e0ac51682376767d823e76d2a92c61a5d97 (diff)
downloadbitcoin-1c0e0a5e38102a67cb66cf6eef4098bdb64bb0f5.tar.xz
Remove redundant stopThread() signal
Diffstat (limited to 'src/qt/intro.cpp')
-rw-r--r--src/qt/intro.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp
index 0b61b05318..62c642ee76 100644
--- a/src/qt/intro.cpp
+++ b/src/qt/intro.cpp
@@ -158,7 +158,7 @@ Intro::~Intro()
{
delete ui;
/* Ensure thread is finished before it is deleted */
- Q_EMIT stopThread();
+ thread->quit();
thread->wait();
}
@@ -306,8 +306,7 @@ void Intro::startThread()
connect(executor, &FreespaceChecker::reply, this, &Intro::setStatus);
connect(this, &Intro::requestCheck, executor, &FreespaceChecker::check);
/* make sure executor object is deleted in its own thread */
- connect(this, &Intro::stopThread, executor, &QObject::deleteLater);
- connect(this, &Intro::stopThread, thread, &QThread::quit);
+ connect(thread, &QThread::finished, executor, &QObject::deleteLater);
thread->start();
}