summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-04-06 19:42:25 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-04-06 19:42:25 +0300
commitd6110527e8c45bdee003f76c3552629f34131d10 (patch)
tree6bbbd4457e06dc8c074197696744c6093844eae4 /src/core
parent71bdb2f1b65f1649dcd707eaf32d590eb253495c (diff)
CLIST_INTERFACE::pfnGetDefaultExStyle => Clist_GetDefaultExStyle
Diffstat (limited to 'src/core')
-rw-r--r--src/core/stdclist/src/clcopts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdclist/src/clcopts.cpp b/src/core/stdclist/src/clcopts.cpp
index 453a2b6267..7f3d5a69ed 100644
--- a/src/core/stdclist/src/clcopts.cpp
+++ b/src/core/stdclist/src/clcopts.cpp
@@ -149,7 +149,7 @@ static INT_PTR CALLBACK DlgProcClcMainOpts(HWND hwndDlg, UINT msg, WPARAM wParam
SetWindowLongPtr(GetDlgItem(hwndDlg, IDC_HIDEOFFLINEOPTS), GWL_STYLE,
GetWindowLongPtr(GetDlgItem(hwndDlg, IDC_HIDEOFFLINEOPTS), GWL_STYLE) | TVS_NOHSCROLL | TVS_CHECKBOXES);
{
- DWORD exStyle = db_get_dw(NULL, "CLC", "ExStyle", pcli->pfnGetDefaultExStyle());
+ DWORD exStyle = db_get_dw(NULL, "CLC", "ExStyle", Clist_GetDefaultExStyle());
for (auto &it : checkBoxToStyleEx)
CheckDlgButton(hwndDlg, it.id, (exStyle & it.flag) ^ (it.flag * it.not) ? BST_CHECKED : BST_UNCHECKED);
}