diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-10 13:11:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-10 13:11:16 +0300 |
commit | 30aa26c864fa09b974e3c223ccf907421ebc0759 (patch) | |
tree | 242d5635daec062b22a166c1047810ae4b54a8bc /plugins/Clist_nicer/src/clcpaint.cpp | |
parent | da8d306b9d6fbe48f04f56d78be2058873f03dbc (diff) |
obsolete compatibility code removed from AVS
Diffstat (limited to 'plugins/Clist_nicer/src/clcpaint.cpp')
-rw-r--r-- | plugins/Clist_nicer/src/clcpaint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_nicer/src/clcpaint.cpp b/plugins/Clist_nicer/src/clcpaint.cpp index 4b37de1d13..6c013e5248 100644 --- a/plugins/Clist_nicer/src/clcpaint.cpp +++ b/plugins/Clist_nicer/src/clcpaint.cpp @@ -203,7 +203,7 @@ static int __fastcall DrawAvatar(HDC hdcMem, RECT *rc, ClcContact *contact, int if (!cfg::dat.bAvatarServiceAvail || dat->bisEmbedded)
return 0;
- if (contact->ace != nullptr && contact->ace->cbSize == sizeof(struct AVATARCACHEENTRY)) {
+ if (contact->ace != nullptr) {
if (contact->ace->dwFlags & AVS_HIDEONCLIST)
return (cfg::dat.dwFlags & CLUI_FRAME_ALWAYSALIGNNICK) ? avatar_size + 2 : 0;
|