mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 22:50:59 +01:00
clang-tidy, qt: Fix modernize-use-default-member-init in headers
See https://clang.llvm.org/extra/clang-tidy/checks/modernize/use-default-member-init.html
This commit is contained in:
@@ -11,14 +11,10 @@
|
||||
#include <cstdlib>
|
||||
#include <optional>
|
||||
|
||||
TransactionFilterProxy::TransactionFilterProxy(QObject *parent) :
|
||||
QSortFilterProxyModel(parent),
|
||||
m_search_string(),
|
||||
typeFilter(ALL_TYPES),
|
||||
watchOnlyFilter(WatchOnlyFilter_All),
|
||||
minAmount(0),
|
||||
limitRows(-1),
|
||||
showInactive(true)
|
||||
TransactionFilterProxy::TransactionFilterProxy(QObject* parent)
|
||||
: QSortFilterProxyModel(parent),
|
||||
m_search_string(),
|
||||
typeFilter(ALL_TYPES)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user