diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-10 01:23:24 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-04-10 01:23:24 +0200 |
commit | f131872653dadafd9af8bec255dfd2bddd75a471 (patch) | |
tree | 5fa3e67ca5b56c1453b153a724c679c701546aea /src/qt/rpcconsole.h | |
parent | 73bc1b7cd2b3fb5e34f4fc5aaa6892fb1e8f2d1e (diff) |
Initialize non-static class members where they are defined
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r-- | src/qt/rpcconsole.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index aedee24869..26ce2af728 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -145,17 +145,17 @@ private: }; interfaces::Node& m_node; - Ui::RPCConsole *ui; - ClientModel *clientModel; + Ui::RPCConsole *ui = nullptr; + ClientModel *clientModel = nullptr; QStringList history; - int historyPtr; + int historyPtr = 0; QString cmdBeforeBrowsing; QList<NodeId> cachedNodeids; - const PlatformStyle *platformStyle; - RPCTimerInterface *rpcTimerInterface; - QMenu *peersTableContextMenu; - QMenu *banTableContextMenu; - int consoleFontSize; + const PlatformStyle *platformStyle = nullptr; + RPCTimerInterface *rpcTimerInterface = nullptr; + QMenu *peersTableContextMenu = nullptr; + QMenu *banTableContextMenu = nullptr; + int consoleFontSize = 0; QCompleter *autoCompleter = nullptr; QThread thread; QString m_last_wallet_id; |