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_modern | |
parent | 85603ce2a16d85ccc3a7ddde8205b214b576627c (diff) |
CLIST_INTERFACE::pfnNotifyNewContact => Clist_NotifyNewContact
Diffstat (limited to 'plugins/Clist_modern')
-rw-r--r-- | plugins/Clist_modern/src/modern_clc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clc.cpp b/plugins/Clist_modern/src/modern_clc.cpp index 0aa55e9858..2f73560dd5 100644 --- a/plugins/Clist_modern/src/modern_clc.cpp +++ b/plugins/Clist_modern/src/modern_clc.cpp @@ -1351,7 +1351,7 @@ static LRESULT clcOnIntmIconChanged(ClcData *dat, HWND hwnd, UINT, WPARAM wParam if (contact) {
contact->iImage = lParam;
contact->bImageIsSpecial = bImageIsSpecial;
- pcli->pfnNotifyNewContact(hwnd, wParam);
+ Clist_NotifyNewContact(hwnd, wParam);
dat->bNeedsResort = true;
}
}
|