Initialize data for simple types in local folder struct
This commit is contained in:
parent
1b1ec93914
commit
92c587966e
1 changed files with 3 additions and 3 deletions
|
|
@ -146,10 +146,10 @@ DeclareSetting(bool, ForwardAlbumsAsIs);
|
||||||
DeclareSetting(bool, ForwardGrouped);
|
DeclareSetting(bool, ForwardGrouped);
|
||||||
|
|
||||||
struct LocalFolder {
|
struct LocalFolder {
|
||||||
int id;
|
int id = 0;
|
||||||
uint64 ownerId;
|
uint64 ownerId;
|
||||||
bool isTest;
|
bool isTest = false;
|
||||||
int cloudOrder;
|
int cloudOrder = 0;
|
||||||
QString name;
|
QString name;
|
||||||
QString emoticon;
|
QString emoticon;
|
||||||
std::vector<uint64> always;
|
std::vector<uint64> always;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue