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