diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-05 18:47:30 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-05 18:47:30 +0300 |
commit | 08273044539a8ee775156187a6e7e6db8614e1db (patch) | |
tree | 259559656f1a40c7d4c397ae0ee8746807aaedc3 /plugins/Clist_nicer | |
parent | bfd3e12ac032ccfee48848f419598ff5dcb9f697 (diff) |
CLIST_INTERFACE::pfnChangeContactIcon => Clist_ChangeContactIcon
Diffstat (limited to 'plugins/Clist_nicer')
-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 c56b4265d7..9f87d88961 100644 --- a/plugins/Clist_nicer/src/clc.cpp +++ b/plugins/Clist_nicer/src/clc.cpp @@ -125,7 +125,7 @@ static int ClcSettingChanged(WPARAM hContact, LPARAM lParam) szProto_s = nullptr;
else
szProto_s = cws->value.pszVal;
- pcli->pfnChangeContactIcon(hContact, IconFromStatusMode(szProto_s, szProto_s == nullptr ? ID_STATUS_OFFLINE : db_get_w(hContact, szProto_s, "Status", ID_STATUS_OFFLINE), hContact, nullptr));
+ Clist_ChangeContactIcon(hContact, IconFromStatusMode(szProto_s, szProto_s == nullptr ? ID_STATUS_OFFLINE : db_get_w(hContact, szProto_s, "Status", ID_STATUS_OFFLINE), hContact, nullptr));
}
// something is being written to a protocol module
if (!__strcmp(szProto, cws->szModule)) {
|