Fix contructors.
This commit is contained in:
parent
9b1b3c37d3
commit
6b0e1eecec
@ -38,6 +38,9 @@ Feed::Feed(RootItem* parent)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Feed::Feed(const Feed& other) : RootItem(other) {
|
Feed::Feed(const Feed& other) : RootItem(other) {
|
||||||
|
setKind(RootItemKind::Feed);
|
||||||
|
setAutoDelete(false);
|
||||||
|
|
||||||
setCountOfAllMessages(other.countOfAllMessages());
|
setCountOfAllMessages(other.countOfAllMessages());
|
||||||
setCountOfUnreadMessages(other.countOfUnreadMessages());
|
setCountOfUnreadMessages(other.countOfUnreadMessages());
|
||||||
setUrl(other.url());
|
setUrl(other.url());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user