diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-01-17 09:48:36 +0000 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-01-17 09:54:56 +0000 |
commit | b7f6a89a3e51af8852296f628ddf0a3601995466 (patch) | |
tree | cd7c1a6bca072ff57485c2b89e5fe9a35b4bb32a /src/qt/modaloverlay.h | |
parent | 10a5f1903725dba8dd265d3150ce1a53ffa3e904 (diff) | |
parent | 7b7cd112444b996a8ae6a6edfed00bcee67546c8 (diff) |
Merge bitcoin-core/gui#686: clang-tidy: Force checks for headers in `src/qt`
7b7cd112444b996a8ae6a6edfed00bcee67546c8 clang-tidy, qt: Force checks for headers in `src/qt` (Hennadii Stepanov)
69eacf2c5ee1c84e92153b525fd4302aec0f5f2a clang-tidy, qt: Fix `modernize-use-default-member-init` in headers (Hennadii Stepanov)
Pull request description:
This PR split from bitcoin/bitcoin#26705 and contains only changes in `src/qt`.
Effectively, it fixes the clang-tidy's `modernize-use-default-member-init` errors, and forces clang-tidy checks for all headers in the `src/qt` directory.
ACKs for top commit:
jarolrod:
ACK 7b7cd112444b996a8ae6a6edfed00bcee67546c8
Tree-SHA512: 79525bb0f31ae7cad88c781e55091a21467c0485ddc1ed03ad62e051480fda3b3710619ea11af480437edba3c6e038f7c40edc6b373e3a37408c006d11b34686
Diffstat (limited to 'src/qt/modaloverlay.h')
-rw-r--r-- | src/qt/modaloverlay.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/modaloverlay.h b/src/qt/modaloverlay.h index 8d0c8fbf9a..40e487b249 100644 --- a/src/qt/modaloverlay.h +++ b/src/qt/modaloverlay.h @@ -45,11 +45,11 @@ protected: private: Ui::ModalOverlay *ui; - int bestHeaderHeight; //best known height (based on the headers) + int bestHeaderHeight{0}; // best known height (based on the headers) QDateTime bestHeaderDate; QVector<QPair<qint64, double> > blockProcessTime; - bool layerIsVisible; - bool userClosed; + bool layerIsVisible{false}; + bool userClosed{false}; QPropertyAnimation m_animation; void UpdateHeaderSyncLabel(); void UpdateHeaderPresyncLabel(int height, const QDateTime& blockDate); |