qt: Clarify some comments

Signed-off-by: Wladimir J. van der Laan <laanwj@gmail.com>
This commit is contained in:
Wladimir J. van der Laan 2018-02-07 10:37:19 +01:00
parent f5a4c3ddf4
commit 1e5d14b3f7

View file

@ -516,14 +516,14 @@ void BitcoinApplication::initializeResult(bool success)
QTimer::singleShot(100, paymentServer, SLOT(uiReady())); QTimer::singleShot(100, paymentServer, SLOT(uiReady()));
#endif #endif
} else { } else {
Q_EMIT splashFinished(window); Q_EMIT splashFinished(window); // Make sure splash screen doesn't stick around during shutdown
quit(); // Exit main loop quit(); // Exit first main loop invocation
} }
} }
void BitcoinApplication::shutdownResult() void BitcoinApplication::shutdownResult()
{ {
quit(); // Exit main loop after shutdown finished quit(); // Exit second main loop invocation after shutdown finished
} }
void BitcoinApplication::handleRunawayException(const QString &message) void BitcoinApplication::handleRunawayException(const QString &message)