Skip to content

Commit 1e5d14b

Browse files
committed
qt: Clarify some comments
Signed-off-by: Wladimir J. van der Laan <[email protected]>
1 parent f5a4c3d commit 1e5d14b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/qt/bitcoin.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,14 +516,14 @@ void BitcoinApplication::initializeResult(bool success)
516516
QTimer::singleShot(100, paymentServer, SLOT(uiReady()));
517517
#endif
518518
} else {
519-
Q_EMIT splashFinished(window);
520-
quit(); // Exit main loop
519+
Q_EMIT splashFinished(window); // Make sure splash screen doesn't stick around during shutdown
520+
quit(); // Exit first main loop invocation
521521
}
522522
}
523523

524524
void BitcoinApplication::shutdownResult()
525525
{
526-
quit(); // Exit main loop after shutdown finished
526+
quit(); // Exit second main loop invocation after shutdown finished
527527
}
528528

529529
void BitcoinApplication::handleRunawayException(const QString &message)

0 commit comments

Comments
 (0)