mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 15:04:40 -04:00
Fix read flag calculation on progress read updated from the server.
This commit is contained in:
12
common/library_item.cpp
Normal file
12
common/library_item.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
#include "library_item.h"
|
||||
|
||||
LibraryItem &LibraryItem::operator=(const LibraryItem &other)
|
||||
{
|
||||
this->name = other.name;
|
||||
this->path = other.path;
|
||||
this->parentId = other.parentId;
|
||||
this->id = other.id;
|
||||
|
||||
return *this;
|
||||
}
|
Reference in New Issue
Block a user