Qt: remove test() call in RPCConsole::startExecutor()

This commit is contained in:
lateminer
2019-03-20 23:26:28 +03:00
parent f5462441e7
commit b3734a3bcc

View File

@@ -757,7 +757,6 @@ void RPCConsole::startExecutor()
connect(this, SIGNAL(stopExecutor()), &thread, SLOT(quit()));
// - queue executor for deletion (in execution thread)
connect(&thread, SIGNAL(finished()), executor, SLOT(deleteLater()), Qt::DirectConnection);
connect(&thread, SIGNAL(finished()), this, SLOT(test()), Qt::DirectConnection);
// Default implementation of QThread::run() simply spins up an event loop in the thread,
// which is what we want.