mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Initialize manga field to false in Folder
This commit is contained in:
parent
51e3b2618a
commit
4a59271ebd
@ -3,6 +3,7 @@
|
||||
Folder::Folder()
|
||||
: knownParent(false),
|
||||
knownId(false),
|
||||
manga(false),
|
||||
numChildren(-1)
|
||||
{
|
||||
}
|
||||
@ -10,6 +11,7 @@ Folder::Folder()
|
||||
Folder::Folder(qulonglong folderId, qulonglong parentId, const QString &folderName, const QString &folderPath)
|
||||
: knownParent(true),
|
||||
knownId(true),
|
||||
manga(false),
|
||||
numChildren(-1)
|
||||
{
|
||||
this->id = folderId;
|
||||
|
Loading…
Reference in New Issue
Block a user