diff options
| author | MarcoFalke <[email protected]> | 2019-01-05 12:02:12 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-01-05 16:16:37 +0100 |
| commit | fa2510d5c1cdf9c2cd5cc9887302ced4378c7202 (patch) | |
| tree | 616492efb0b268d8e37ba57bda813aaacc66c975 /src/qt/recentrequeststablemodel.h | |
| parent | Merge #12151: rpc: Remove cs_main lock from blockToJSON and blockheaderToJSON (diff) | |
| download | discoin-fa2510d5c1cdf9c2cd5cc9887302ced4378c7202.tar.xz discoin-fa2510d5c1cdf9c2cd5cc9887302ced4378c7202.zip | |
Use C++11 default member initializers
Diffstat (limited to 'src/qt/recentrequeststablemodel.h')
| -rw-r--r-- | src/qt/recentrequeststablemodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/recentrequeststablemodel.h b/src/qt/recentrequeststablemodel.h index ff2c0c809..8a1140e95 100644 --- a/src/qt/recentrequeststablemodel.h +++ b/src/qt/recentrequeststablemodel.h @@ -94,7 +94,7 @@ private: WalletModel *walletModel; QStringList columns; QList<RecentRequestEntry> list; - int64_t nReceiveRequestsMaxId; + int64_t nReceiveRequestsMaxId{0}; /** Updates the column title to "Amount (DisplayUnit)" and emits headerDataChanged() signal for table headers to react. */ void updateAmountColumnTitle(); |