diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-04 20:33:57 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-04 20:33:57 +0300 |
commit | 53156bdc6edde511dbdf5e999756cd80d0a97e13 (patch) | |
tree | 4636c471ae1f8f06519cbd10efc41da47a9a18d1 /plugins/Clist_modern/src/modern_clcmsgs.cpp | |
parent | 5da898f7cca8599ecff44b3fa10eafb753308a4d (diff) |
static function CLIST_INTERFACE::pfnInitAutoRebuild replaced with Clist_InitAutoRebuild
Diffstat (limited to 'plugins/Clist_modern/src/modern_clcmsgs.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcmsgs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clcmsgs.cpp b/plugins/Clist_modern/src/modern_clcmsgs.cpp index 21f0d99124..f40be03600 100644 --- a/plugins/Clist_modern/src/modern_clcmsgs.cpp +++ b/plugins/Clist_modern/src/modern_clcmsgs.cpp @@ -68,7 +68,7 @@ LRESULT cli_ProcessExternalMessages(HWND hwnd, ClcData *dat, UINT msg, WPARAM wP SetWindowLongPtr(hwnd, GWL_STYLE, GetWindowLongPtr(hwnd, GWL_STYLE) &~CLS_HIDEEMPTYGROUPS);
BOOL newval = ((GetWindowLongPtr(hwnd, GWL_STYLE) & CLS_HIDEEMPTYGROUPS) != 0);
if (newval != old)
- pcli->pfnInitAutoRebuild(hwnd);
+ Clist_InitAutoRebuild(hwnd);
}
return 0;
|