File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ void BitcoinApplication::createWindow(const NetworkStyle *networkStyle)
262
262
void BitcoinApplication::createSplashScreen (const NetworkStyle *networkStyle)
263
263
{
264
264
assert (!m_splash);
265
- m_splash = new SplashScreen (nullptr , networkStyle);
265
+ m_splash = new SplashScreen (networkStyle);
266
266
// We don't hold a direct pointer to the splash screen after creation, but the splash
267
267
// screen will take care of deleting itself when finish() happens.
268
268
m_splash->show ();
Original file line number Diff line number Diff line change 24
24
#include < QScreen>
25
25
26
26
27
- SplashScreen::SplashScreen (Qt::WindowFlags f, const NetworkStyle * networkStyle) :
28
- QWidget(nullptr , f ), curAlignment(0 )
27
+ SplashScreen::SplashScreen (const NetworkStyle* networkStyle)
28
+ : QWidget(), curAlignment(0 )
29
29
{
30
30
// set reference point, paddings
31
31
int paddingRight = 50 ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class SplashScreen : public QWidget
28
28
Q_OBJECT
29
29
30
30
public:
31
- explicit SplashScreen (Qt::WindowFlags f, const NetworkStyle *networkStyle);
31
+ explicit SplashScreen (const NetworkStyle *networkStyle);
32
32
~SplashScreen ();
33
33
void setNode (interfaces::Node& node);
34
34
You can’t perform that action at this time.
0 commit comments