Fix contructors.
This commit is contained in:
parent
9b1b3c37d3
commit
6b0e1eecec
1 changed files with 3 additions and 0 deletions
|
@ -38,6 +38,9 @@ Feed::Feed(RootItem* parent)
|
|||
}
|
||||
|
||||
Feed::Feed(const Feed& other) : RootItem(other) {
|
||||
setKind(RootItemKind::Feed);
|
||||
setAutoDelete(false);
|
||||
|
||||
setCountOfAllMessages(other.countOfAllMessages());
|
||||
setCountOfUnreadMessages(other.countOfUnreadMessages());
|
||||
setUrl(other.url());
|
||||
|
|
Loading…
Add table
Reference in a new issue