Skip to content

Commit

Permalink
qt: Clarify some comments
Browse files Browse the repository at this point in the history
Signed-off-by: Wladimir J. van der Laan <laanwj@gmail.com>
  • Loading branch information
laanwj committed Feb 7, 2018
1 parent f5a4c3d commit 1e5d14b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/qt/bitcoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -516,14 +516,14 @@ void BitcoinApplication::initializeResult(bool success)
QTimer::singleShot(100, paymentServer, SLOT(uiReady()));
#endif
} else {
Q_EMIT splashFinished(window);
quit(); // Exit main loop
Q_EMIT splashFinished(window); // Make sure splash screen doesn't stick around during shutdown
quit(); // Exit first main loop invocation
}
}

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)
Expand Down

0 comments on commit 1e5d14b

Please sign in to comment.