Refactor: GUI: Make modernize-use-default-member-init happy with columnResizingFixer

This commit is contained in:
Luke Dashjr 2023-10-10 01:55:29 +00:00
parent 8e428cc118
commit 1128a6bfff
2 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@
ReceiveCoinsDialog::ReceiveCoinsDialog(const PlatformStyle *_platformStyle, QWidget *parent) :
QDialog(parent, GUIUtil::dialog_flags),
ui(new Ui::ReceiveCoinsDialog),
columnResizingFixer(nullptr),
platformStyle(_platformStyle)
{
ui->setupUi(this);

View File

@ -51,7 +51,7 @@ public Q_SLOTS:
private:
Ui::ReceiveCoinsDialog *ui;
GUIUtil::TableViewLastColumnResizingFixer *columnResizingFixer;
GUIUtil::TableViewLastColumnResizingFixer *columnResizingFixer{nullptr};
WalletModel* model{nullptr};
QMenu *contextMenu;
QAction* copyLabelAction;