diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-09-25 11:31:46 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-09-25 11:31:53 +0200 |
| commit | 375cb4c253091edea03d9df66b66a93c1040bd9c (patch) | |
| tree | cf0e1cfe326cdb9d78d62b3db3c2b6cf62b77087 /src/qt/splashscreen.cpp | |
| parent | Merge pull request #4967 (diff) | |
| parent | [Qt] minor changes in splashscreen.cpp (diff) | |
| download | discoin-375cb4c253091edea03d9df66b66a93c1040bd9c.tar.xz discoin-375cb4c253091edea03d9df66b66a93c1040bd9c.zip | |
Merge pull request #4959
bb26e2c [Qt] minor changes in splashscreen.cpp (Philip Kaufmann)
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 673e98469..4fe610794 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -22,8 +22,6 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, bool isTestNet) : QWidget(0, f), curAlignment(0) { - //setAutoFillBackground(true); - // set reference point, paddings int paddingRight = 50; int paddingTop = 50; @@ -114,6 +112,7 @@ SplashScreen::~SplashScreen() void SplashScreen::slotFinish(QWidget *mainWin) { + Q_UNUSED(mainWin); hide(); } @@ -180,4 +179,3 @@ void SplashScreen::closeEvent(QCloseEvent *event) { event->ignore(); } - |