aboutsummaryrefslogtreecommitdiff
path: root/src/qt/splashscreen.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-07-23 08:52:24 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-07-23 08:52:24 +0200
commit84ef729aa1de762229c8a5c800cddff1a014fcca (patch)
treeba4aeda20db80a0f3b476516b70d7cc4337129cb /src/qt/splashscreen.cpp
parent0a740650a52a21b7d82b43524017c87643af3224 (diff)
downloadbitcoin-84ef729aa1de762229c8a5c800cddff1a014fcca.tar.xz
Bitcoin-Qt: fix QApplication includes to match our include defaults
- move all QApplication includes to top of included Qt headers - undef our loop macro where it would cause compilation errors otherwise
Diffstat (limited to 'src/qt/splashscreen.cpp')
-rw-r--r--src/qt/splashscreen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp
index e400278123..43430a858e 100644
--- a/src/qt/splashscreen.cpp
+++ b/src/qt/splashscreen.cpp
@@ -2,9 +2,9 @@
#include "clientversion.h"
#include "util.h"
-#include <QPainter>
-#undef loop /* ugh, remove this when the #define loop is gone from util.h */
+#undef loop /* Todo: ugh, remove this when the #define loop is gone from util.h */
#include <QApplication>
+#include <QPainter>
SplashScreen::SplashScreen(const QPixmap &pixmap, Qt::WindowFlags f) :
QSplashScreen(pixmap, f)