Core: fix minor issues:

+ fix issues found by clang's clazy tool
+ fix cppcoreguidelines-pro-type-member-init
  * Make sure that all class members are initialized in the constructor
This commit is contained in:
wmayer
2022-06-30 16:31:16 +02:00
parent 67ddf95f89
commit 97f9320bb3
3 changed files with 12 additions and 7 deletions

View File

@@ -157,7 +157,7 @@ public:
QString label;
QString fileName;
QString tooltip;
Status status;
Status status = Unknown;
};
Ui_DocumentRecovery ui;
bool recovered;