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_nicer | |
parent | 423fb81b36428c3a22f6be94dd8ba2e7161b9179 (diff) |
CLIST_INTERFACE::pfnClcStatusToPf2 => Clist_ClcStatusToPf2
Diffstat (limited to 'plugins/Clist_nicer')
-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 b95a9d2a19..a2476af09e 100644 --- a/plugins/Clist_nicer/src/clcpaint.cpp +++ b/plugins/Clist_nicer/src/clcpaint.cpp @@ -1295,7 +1295,7 @@ void PaintClc(HWND hwnd, struct ClcData *dat, HDC hdc, RECT *rcPaint) g_center = db_get_b(NULL, "CLCExt", "EXBK_CenterGroupnames", 0) && !dat->bisEmbedded;
g_ignoreselforgroups = db_get_b(NULL, "CLC", "IgnoreSelforGroups", 0);
- if (dat->greyoutFlags & pcli->pfnClcStatusToPf2(my_status) || style & WS_DISABLED)
+ if (dat->greyoutFlags & Clist_ClcStatusToPf2(my_status) || style & WS_DISABLED)
grey = 1;
else if (GetFocus() != hwnd && dat->greyoutFlags & GREYF_UNFOCUS)
grey = 1;
|