summaryrefslogtreecommitdiff
path: root/plugins/Dbx_sqlite
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-10-10 23:38:16 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-10-10 23:38:16 +0300
commit9390b42340def16388cd06ab851cc303db0c096e (patch)
treec5ef12d340d47e4021ab68ef8c37d3a8f7f220f7 /plugins/Dbx_sqlite
parent39681c2aa83e33d46598f8aeecd10370b04cf364 (diff)
code cleaning
Diffstat (limited to 'plugins/Dbx_sqlite')
-rw-r--r--plugins/Dbx_sqlite/src/dbcontacts.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dbx_sqlite/src/dbcontacts.cpp b/plugins/Dbx_sqlite/src/dbcontacts.cpp
index 7800e8b09a..63347e74c4 100644
--- a/plugins/Dbx_sqlite/src/dbcontacts.cpp
+++ b/plugins/Dbx_sqlite/src/dbcontacts.cpp
@@ -81,8 +81,8 @@ MCONTACT CDbxSQLite::AddContact()
DBCachedContact *cc = m_cache->AddContactToCache(hContact);
if (cc == nullptr)
return INVALID_CONTACT_ID;
- NotifyEventHooks(g_hevEventAdded, hContact);
+ NotifyEventHooks(g_hevContactAdded, hContact);
return hContact;
}
@@ -104,7 +104,7 @@ LONG CDbxSQLite::DeleteContact(MCONTACT hContact)
}
m_cache->FreeCachedContact(hContact);
- NotifyEventHooks(g_hevEventDeleted, hContact);
+ NotifyEventHooks(g_hevContactDeleted, hContact);
return 0;
}