diff options
author | George Hazan <ghazan@miranda.im> | 2018-10-17 14:52:12 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-10-17 14:52:12 +0300 |
commit | b80bf9c6208115addd64726fc6904f1543c63952 (patch) | |
tree | 7e9b49eed8ce720b0aa03e8613c2e9dc610c0d9b /plugins/Dbx_mdbx/src/dbintf.h | |
parent | e487efd9f7383fb73d00c0622923542b831b05a3 (diff) |
fixes #1626 (Dbx_mdbx: subcontact's history disappears after removing a subcontact instead of saving in meta)
Diffstat (limited to 'plugins/Dbx_mdbx/src/dbintf.h')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbintf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Dbx_mdbx/src/dbintf.h b/plugins/Dbx_mdbx/src/dbintf.h index 2098412a68..f35da2a3bc 100644 --- a/plugins/Dbx_mdbx/src/dbintf.h +++ b/plugins/Dbx_mdbx/src/dbintf.h @@ -187,7 +187,7 @@ class CDbxMDBX : public MDatabaseCommon, public MZeroedObject MCONTACT m_maxContactId;
- void GatherContactHistory(MCONTACT hContact, LIST<EventItem> &items);
+ void GatherContactHistory(MCONTACT hContact, OBJLIST<EventItem> &items);
////////////////////////////////////////////////////////////////////////////
// events
@@ -271,6 +271,8 @@ public: STDMETHODIMP_(BOOL) MetaMergeHistory(DBCachedContact *ccMeta, DBCachedContact *ccSub) override;
STDMETHODIMP_(BOOL) MetaSplitHistory(DBCachedContact *ccMeta, DBCachedContact *ccSub) override;
+ STDMETHODIMP_(BOOL) MetaRemoveSubHistory(DBCachedContact *ccSub) override;
+
STDMETHODIMP_(BOOL) Compact();
STDMETHODIMP_(BOOL) Backup(const wchar_t*);
|