mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 15:09:59 +01:00
Don't use zero as null pointer constant (-Wzero-as-null-pointer-constant)
Qt-only changes.
This commit is contained in:
committed by
Ben Woosley
parent
84d0fdce11
commit
9096276e0b
@@ -32,8 +32,8 @@
|
||||
|
||||
WalletView::WalletView(const PlatformStyle *_platformStyle, QWidget *parent):
|
||||
QStackedWidget(parent),
|
||||
clientModel(0),
|
||||
walletModel(0),
|
||||
clientModel(nullptr),
|
||||
walletModel(nullptr),
|
||||
platformStyle(_platformStyle)
|
||||
{
|
||||
// Create tabs
|
||||
|
||||
Reference in New Issue
Block a user