summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mir_app/src/clc.cpp7
-rw-r--r--src/mir_app/src/clistsettings.cpp2
2 files changed, 2 insertions, 7 deletions
diff --git a/src/mir_app/src/clc.cpp b/src/mir_app/src/clc.cpp
index 23fcc6e060..4bbccb844b 100644
--- a/src/mir_app/src/clc.cpp
+++ b/src/mir_app/src/clc.cpp
@@ -170,12 +170,6 @@ static int ClcContactAdded(WPARAM wParam, LPARAM lParam)
return 0;
}
-static int ClcContactDeleted(WPARAM wParam, LPARAM lParam)
-{
- WindowList_BroadcastAsync(hClcWindowList, INTM_CONTACTDELETED, wParam, lParam);
- return 0;
-}
-
static int ClcIconsChanged(WPARAM, LPARAM)
{
WindowList_BroadcastAsync(hClcWindowList, INTM_INVALIDATE, 0, 0);
@@ -218,7 +212,6 @@ int LoadCLCModule(void)
HookEvent(ME_PROTO_ACCLISTCHANGED, ClcAccountsChanged);
HookEvent(ME_DB_CONTACT_SETTINGCHANGED, ClcSettingChanged);
HookEvent(ME_DB_CONTACT_ADDED, ClcContactAdded);
- HookEvent(ME_DB_CONTACT_DELETED, ClcContactDeleted);
HookEvent(ME_SKIN_ICONSCHANGED, ClcIconsChanged);
HookEvent(ME_PROTO_ACK, ClcProtoAck);
diff --git a/src/mir_app/src/clistsettings.cpp b/src/mir_app/src/clistsettings.cpp
index 86652d5078..259806b594 100644
--- a/src/mir_app/src/clistsettings.cpp
+++ b/src/mir_app/src/clistsettings.cpp
@@ -135,6 +135,8 @@ int ContactAdded(WPARAM hContact, LPARAM)
int ContactDeleted(WPARAM hContact, LPARAM)
{
+ Clist_Broadcast(INTM_CONTACTDELETED, hContact, 0);
+
int idx = clistCache.getIndex((ClcCacheEntry*)&hContact);
if (idx != -1) {
cli.pfnFreeCacheItem(clistCache[idx]);