diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-06 21:37:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-06 21:37:45 +0300 |
commit | d5558b6f67918ea8f951fd0408eff18532a63d4e (patch) | |
tree | ac73e7988e1d6a06f588717d6b93cea90bec16e3 /src/core | |
parent | 4f5b5ef8c908156bd30d5bb391c1e238cbcc2f0c (diff) |
CLIST_INTERFACE::pfnClcOptionsChanged => Clist_ClcOptionsChanged
CLIST_INTERFACE::pfnRegisterFileDropping & CLIST_INTERFACE::pfnUnregisterFileDropping => suspended
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdclist/src/clcfonts.cpp | 2 | ||||
-rw-r--r-- | src/core/stdclist/src/clcopts.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/stdclist/src/clcfonts.cpp b/src/core/stdclist/src/clcfonts.cpp index c8f06365f1..a68e3979aa 100644 --- a/src/core/stdclist/src/clcfonts.cpp +++ b/src/core/stdclist/src/clcfonts.cpp @@ -45,7 +45,7 @@ static clistFontDescr[] = static int FS_FontsChanged(WPARAM, LPARAM)
{
- pcli->pfnClcOptionsChanged();
+ Clist_ClcOptionsChanged();
return 0;
}
diff --git a/src/core/stdclist/src/clcopts.cpp b/src/core/stdclist/src/clcopts.cpp index 7f3d5a69ed..0450672c0d 100644 --- a/src/core/stdclist/src/clcopts.cpp +++ b/src/core/stdclist/src/clcopts.cpp @@ -261,7 +261,7 @@ static INT_PTR CALLBACK DlgProcClcMainOpts(HWND hwndDlg, UINT msg, WPARAM wParam db_set_b(NULL, "CLC", "NoVScrollBar", (BYTE)(IsDlgButtonChecked(hwndDlg, IDC_NOSCROLLBAR) ? 1 : 0));
db_set_b(NULL, "CLC", "RowHeight", (BYTE)SendDlgItemMessage(hwndDlg, IDC_ROWHEIGHTSPIN, UDM_GETPOS, 0, 0));
db_set_b(NULL, "CLC", "GammaCorrect", (BYTE)IsDlgButtonChecked(hwndDlg, IDC_GAMMACORRECT));
- pcli->pfnClcOptionsChanged();
+ Clist_ClcOptionsChanged();
return TRUE;
}
break;
@@ -409,7 +409,7 @@ static INT_PTR CALLBACK DlgProcClcBkgOpts(HWND hwndDlg, UINT msg, WPARAM wParam, flags |= CLBF_PROPORTIONAL;
db_set_w(NULL, "CLC", "BkBmpUse", flags);
}
- pcli->pfnClcOptionsChanged();
+ Clist_ClcOptionsChanged();
return TRUE;
}
break;
|