diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-06 20:11:32 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-06 20:11:32 +0300 |
commit | 0fd99700af65c76e2dbedabb010040a3e9f3b675 (patch) | |
tree | c7796a66734a0bbc21053d901eaa34e6ef66b6a3 /plugins/Clist_blind | |
parent | 423fb81b36428c3a22f6be94dd8ba2e7161b9179 (diff) |
CLIST_INTERFACE::pfnClcStatusToPf2 => Clist_ClcStatusToPf2
Diffstat (limited to 'plugins/Clist_blind')
-rw-r--r-- | plugins/Clist_blind/src/clcpaint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_blind/src/clcpaint.cpp b/plugins/Clist_blind/src/clcpaint.cpp index f8992a8f96..26bc796c49 100644 --- a/plugins/Clist_blind/src/clcpaint.cpp +++ b/plugins/Clist_blind/src/clcpaint.cpp @@ -152,7 +152,7 @@ void PaintClc(HWND hwnd, struct ClcData *dat, HDC hdc, RECT * rcPaint) // yes I know about GetSysColorBrush()
COLORREF tmpbkcolour = style & CLS_CONTACTLIST ? (dat->bUseWindowsColours ? GetSysColor(COLOR_3DFACE) : dat->bkColour) : dat->bkColour;
- if (dat->greyoutFlags & pcli->pfnClcStatusToPf2(status) || style & WS_DISABLED)
+ if (dat->greyoutFlags & Clist_ClcStatusToPf2(status) || style & WS_DISABLED)
grey = 1;
else if (GetFocus() != hwnd && dat->greyoutFlags & GREYF_UNFOCUS)
grey = 1;
|