diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-06 19:50:12 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-06 19:50:12 +0300 |
commit | 1a6ae4dcc2b3e20baf392127d590d02e855ba357 (patch) | |
tree | fd492859b3aa4847b8f6d0c3d2e97e64222780df /plugins/Clist_nicer/src | |
parent | 85603ce2a16d85ccc3a7ddde8205b214b576627c (diff) |
CLIST_INTERFACE::pfnNotifyNewContact => Clist_NotifyNewContact
Diffstat (limited to 'plugins/Clist_nicer/src')
-rw-r--r-- | plugins/Clist_nicer/src/clc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_nicer/src/clc.cpp b/plugins/Clist_nicer/src/clc.cpp index ca0c6c673c..e4598bb954 100644 --- a/plugins/Clist_nicer/src/clc.cpp +++ b/plugins/Clist_nicer/src/clc.cpp @@ -331,7 +331,7 @@ LRESULT CALLBACK ContactListControlWndProc(HWND hwnd, UINT msg, WPARAM wParam, L Clist_FindItem(hwnd, dat, hContact, &contact, nullptr, nullptr);
if (contact) {
contact->iImage = (WORD)lParam;
- pcli->pfnNotifyNewContact(hwnd, hContact);
+ Clist_NotifyNewContact(hwnd, hContact);
}
}
}
|