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 /src/core/stdclist | |
parent | 423fb81b36428c3a22f6be94dd8ba2e7161b9179 (diff) |
CLIST_INTERFACE::pfnClcStatusToPf2 => Clist_ClcStatusToPf2
Diffstat (limited to 'src/core/stdclist')
-rw-r--r-- | src/core/stdclist/src/clcpaint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdclist/src/clcpaint.cpp b/src/core/stdclist/src/clcpaint.cpp index e95fca2fa7..03a927d63d 100644 --- a/src/core/stdclist/src/clcpaint.cpp +++ b/src/core/stdclist/src/clcpaint.cpp @@ -153,7 +153,7 @@ void PaintClc(HWND hwnd, struct ClcData *dat, HDC hdc, RECT * rcPaint) dat->rowHeight = minHeight;
int grey;
- 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;
|