diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2018-12-02 01:26:28 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2018-12-02 01:26:28 +0200 |
commit | 7d1b60ce931d5944576fc726b0ef6b9a10ef8793 (patch) | |
tree | bdfb286ea53da4a980459ca0ecfd6fbb84862e13 /src/qt/splashscreen.cpp | |
parent | ed12fd83ca7999a896350197533de5e9202bc2fe (diff) |
Cleanup SplashScreen class
Cleaning up after replacing the QSplashScreen base class with the
QWidget class.
Diffstat (limited to 'src/qt/splashscreen.cpp')
-rw-r--r-- | src/qt/splashscreen.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index df38285d08..7b952f9fd7 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -145,10 +145,8 @@ bool SplashScreen::eventFilter(QObject * obj, QEvent * ev) { return QObject::eventFilter(obj, ev); } -void SplashScreen::slotFinish(QWidget *mainWin) +void SplashScreen::finish() { - Q_UNUSED(mainWin); - /* If the window is minimized, hide() will be ignored. */ /* Make sure we de-minimize the splashscreen window before hiding */ if (isMinimized()) |