Fix all warnings from the cppcoreguidelines-pro-type-member-init clang-tidy check (#4426)

This commit is contained in:
pajlada
2023-09-09 13:11:19 +02:00
committed by GitHub
parent 877a4e05fa
commit d4558b5fe5
26 changed files with 44 additions and 42 deletions
+2 -2
View File
@@ -71,7 +71,7 @@ private:
struct {
QLabel *label;
ColorButton *color;
} selected;
} selected{};
struct {
QColorPicker *colorPicker;
@@ -82,7 +82,7 @@ private:
QLabel *htmlLabel;
QLineEdit *htmlEdit;
} picker;
} picker{};
} ui_;
enum SpinBox : size_t { RED = 0, GREEN = 1, BLUE = 2, ALPHA = 3, END };