mirror of
https://github.com/YACReader/yacreader
synced 2025-09-08 06:14:53 -04:00
Initialize manga field to false in Folder
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user