diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-21 18:36:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-21 18:36:00 +0000 |
commit | 42112cede8ed785b450334f1296f0a94f439c2cb (patch) | |
tree | f2078ace7fd9ae5af703779317f32bb89d01fda0 /plugins/Db3x_mmap/src/dbintf.h | |
parent | 25ee6fd0dc6853606daee61f9173db3a27b76722 (diff) |
dbx_mmap:
- m_contactsMap became useless and therefore was eliminated;
- fix for the metacontacts convertor
git-svn-id: http://svn.miranda-ng.org/main/trunk@9906 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x_mmap/src/dbintf.h')
-rw-r--r-- | plugins/Db3x_mmap/src/dbintf.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/plugins/Db3x_mmap/src/dbintf.h b/plugins/Db3x_mmap/src/dbintf.h index 7765644baf..700fc465b0 100644 --- a/plugins/Db3x_mmap/src/dbintf.h +++ b/plugins/Db3x_mmap/src/dbintf.h @@ -173,14 +173,6 @@ struct DBEvent #include <poppack.h>
-struct ConvertedContact
-{
- ConvertedContact(MCONTACT _old, MCONTACT _new) :
- hOld(_old), hNew(_new) {}
-
- MCONTACT hOld, hNew;
-};
-
struct CDb3Mmap : public MIDatabase, public MIDatabaseChecker, public MZeroedObject
{
CDb3Mmap(const TCHAR *tszFileName, int mode);
@@ -317,8 +309,6 @@ protected: ////////////////////////////////////////////////////////////////////////////
// contacts
- OBJLIST<ConvertedContact> m_contactsMap;
-
int WipeContactHistory(DBContact *dbc);
////////////////////////////////////////////////////////////////////////////
|