diff options
author | George Hazan <ghazan@miranda.im> | 2018-10-10 23:38:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-10-10 23:38:16 +0300 |
commit | 9390b42340def16388cd06ab851cc303db0c096e (patch) | |
tree | c5ef12d340d47e4021ab68ef8c37d3a8f7f220f7 /plugins/Dbx_mdbx/src/dbcontacts.cpp | |
parent | 39681c2aa83e33d46598f8aeecd10370b04cf364 (diff) |
code cleaning
Diffstat (limited to 'plugins/Dbx_mdbx/src/dbcontacts.cpp')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbcontacts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dbx_mdbx/src/dbcontacts.cpp b/plugins/Dbx_mdbx/src/dbcontacts.cpp index 1cda600b34..6c6fd8a8ba 100644 --- a/plugins/Dbx_mdbx/src/dbcontacts.cpp +++ b/plugins/Dbx_mdbx/src/dbcontacts.cpp @@ -41,7 +41,7 @@ LONG CDbxMDBX::DeleteContact(MCONTACT contactID) if (contactID == 0) // global contact cannot be removed
return 1;
- NotifyEventHooks(g_hevEventDeleted, contactID, 0);
+ NotifyEventHooks(g_hevContactDeleted, contactID, 0);
{
OBJLIST<EventItem> events(50);
GatherContactHistory(contactID, events);
@@ -102,7 +102,7 @@ MCONTACT CDbxMDBX::AddContact() DBFlush();
- NotifyEventHooks(g_hevEventAdded, dwContactId, 0);
+ NotifyEventHooks(g_hevContactAdded, dwContactId, 0);
return dwContactId;
}
|