Fix missing initializations in local folder struct
This commit is contained in:
parent
5f89b753fa
commit
b0fed1a6a0
1 changed files with 2 additions and 2 deletions
|
|
@ -147,7 +147,7 @@ DeclareSetting(bool, ForwardGrouped);
|
|||
|
||||
struct LocalFolder {
|
||||
int id = 0;
|
||||
uint64 ownerId;
|
||||
uint64 ownerId = 0;
|
||||
bool isTest = false;
|
||||
int cloudOrder = 0;
|
||||
QString name;
|
||||
|
|
@ -155,7 +155,7 @@ struct LocalFolder {
|
|||
std::vector<uint64> always;
|
||||
std::vector<uint64> never;
|
||||
std::vector<uint64> pinned;
|
||||
ushort flags;
|
||||
ushort flags = 0;
|
||||
};
|
||||
|
||||
using LocalFolderVector = std::vector<LocalFolder>;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue