@@ -217,7 +217,7 @@ public Q_SLOTS:
217217 void requestedInitialize ();
218218 void requestedShutdown ();
219219 void stopThread ();
220- void splashFinished (QWidget *window );
220+ void splashFinished ();
221221
222222private:
223223 QThread *coreThread;
@@ -357,9 +357,9 @@ void BitcoinApplication::createSplashScreen(const NetworkStyle *networkStyle)
357357{
358358 SplashScreen *splash = new SplashScreen (m_node, 0 , networkStyle);
359359 // We don't hold a direct pointer to the splash screen after creation, but the splash
360- // screen will take care of deleting itself when slotFinish happens.
360+ // screen will take care of deleting itself when finish() happens.
361361 splash->show ();
362- connect (this , &BitcoinApplication::splashFinished, splash, &SplashScreen::slotFinish );
362+ connect (this , &BitcoinApplication::splashFinished, splash, &SplashScreen::finish );
363363 connect (this , &BitcoinApplication::requestedShutdown, splash, &QWidget::close);
364364}
365365
@@ -500,7 +500,7 @@ void BitcoinApplication::initializeResult(bool success)
500500 {
501501 window->show ();
502502 }
503- Q_EMIT splashFinished (window );
503+ Q_EMIT splashFinished ();
504504
505505#ifdef ENABLE_WALLET
506506 // Now that initialization/startup is done, process any command-line
@@ -514,7 +514,7 @@ void BitcoinApplication::initializeResult(bool success)
514514#endif
515515 pollShutdownTimer->start (200 );
516516 } else {
517- Q_EMIT splashFinished (window ); // Make sure splash screen doesn't stick around during shutdown
517+ Q_EMIT splashFinished (); // Make sure splash screen doesn't stick around during shutdown
518518 quit (); // Exit first main loop invocation
519519 }
520520}
0 commit comments