fixed a few bugs in the new circle cache system

This commit is contained in:
csoler 2020-05-07 20:35:02 +02:00
parent 11a4b6540f
commit 5f5c2be64b
No known key found for this signature in database
GPG key ID: 7BCA522266C0804C
3 changed files with 78 additions and 69 deletions

View file

@ -92,7 +92,8 @@ public:
class RsGxsMsgChange : public RsGxsNotify
{
public:
RsGxsMsgChange(NotifyType type, const RsGxsGroupId& gid, const RsGxsMessageId& msg_id,bool metaChange) : RsGxsNotify(gid), mNewMsgItem(nullptr),NOTIFY_TYPE(type), mMetaChange(metaChange) {}
RsGxsMsgChange(NotifyType type, const RsGxsGroupId& gid, const RsGxsMessageId& msg_id,bool metaChange)
: RsGxsNotify(gid), mMsgId(msg_id), mNewMsgItem(nullptr),NOTIFY_TYPE(type), mMetaChange(metaChange) {}
RsGxsMessageId mMsgId;
RsGxsMsgItem *mNewMsgItem;