diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-26 14:36:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-26 14:36:34 +0000 |
commit | f14fa326359b2c32fb1f370f90956e86b43d2e51 (patch) | |
tree | a066c18cbdfbf2356ac233a629b21cbe33196090 /src/modules/ignore/ignore.cpp | |
parent | 0f17dd8168aa247cc0366be363902a20a9b692af (diff) |
a parameter added to pfnLoadClcOptions to prevent double options initialization
git-svn-id: http://svn.miranda-ng.org/main/trunk@9945 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/ignore/ignore.cpp')
-rw-r--r-- | src/modules/ignore/ignore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/ignore/ignore.cpp b/src/modules/ignore/ignore.cpp index 0c1c4a6766..23fca20224 100644 --- a/src/modules/ignore/ignore.cpp +++ b/src/modules/ignore/ignore.cpp @@ -255,7 +255,7 @@ static INT_PTR CALLBACK DlgProcIgnoreOpts(HWND hwndDlg, UINT msg, WPARAM, LPARAM SetListGroupIcons( GetDlgItem(hwndDlg, IDC_LIST), (HANDLE)SendDlgItemMessage(hwndDlg, IDC_LIST, CLM_GETNEXTITEM, CLGN_ROOT, 0), hItemAll, NULL);
break;
case CLN_OPTIONSCHANGED:
- ResetListOptions( GetDlgItem(hwndDlg, IDC_LIST));
+ ResetListOptions(GetDlgItem(hwndDlg, IDC_LIST));
break;
case CLN_CHECKCHANGED:
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
|