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 /plugins/Clist_nicer/src/clcopts.cpp | |
parent | 4f5b5ef8c908156bd30d5bb391c1e238cbcc2f0c (diff) |
CLIST_INTERFACE::pfnClcOptionsChanged => Clist_ClcOptionsChanged
CLIST_INTERFACE::pfnRegisterFileDropping & CLIST_INTERFACE::pfnUnregisterFileDropping => suspended
Diffstat (limited to 'plugins/Clist_nicer/src/clcopts.cpp')
-rw-r--r-- | plugins/Clist_nicer/src/clcopts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_nicer/src/clcopts.cpp b/plugins/Clist_nicer/src/clcopts.cpp index 0895b0d146..d2114efd77 100644 --- a/plugins/Clist_nicer/src/clcopts.cpp +++ b/plugins/Clist_nicer/src/clcopts.cpp @@ -683,7 +683,7 @@ static INT_PTR CALLBACK DlgProcClcMainOpts(HWND hwndDlg, UINT msg, WPARAM wParam cfg::dat.bDblClkAvatars = IsDlgButtonChecked(hwndDlg, IDC_DBLCLKAVATARS) ? TRUE : FALSE;
db_set_b(NULL, "CLC", "dblclkav", (BYTE)cfg::dat.bDblClkAvatars);
- pcli->pfnClcOptionsChanged();
+ Clist_ClcOptionsChanged();
CoolSB_SetupScrollBar();
PostMessage(pcli->hwndContactList, CLUIINTM_REDRAW, 0, 0);
opt_clc_main_changed = 0;
@@ -809,7 +809,7 @@ static INT_PTR CALLBACK DlgProcClcBkgOpts(HWND hwndDlg, UINT msg, WPARAM wParam, cfg::dat.bWallpaperMode = IsDlgButtonChecked(hwndDlg, IDC_SKINMODE) ? 1 : 0;
db_set_b(NULL, "CLUI", "UseBkSkin", (BYTE)cfg::dat.bWallpaperMode);
- pcli->pfnClcOptionsChanged();
+ Clist_ClcOptionsChanged();
PostMessage(pcli->hwndContactList, CLUIINTM_REDRAW, 0, 0);
opt_clc_bkg_changed = 0;
return TRUE;
|