diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-05 22:15:11 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-05 22:15:11 +0000 |
commit | b0782cc92dbcf328a47c7a702386723d15e56497 (patch) | |
tree | 4502cc006ffed030b93a57d7c6f5ec59d8d97e49 /protocols/Xfire/src | |
parent | 2aabf6594cb0fb4f8db16771c988bf5a6eab2c4b (diff) |
some another sudden Unicode appearances
git-svn-id: http://svn.miranda-ng.org/main/trunk@13457 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src')
-rw-r--r-- | protocols/Xfire/src/options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Xfire/src/options.cpp b/protocols/Xfire/src/options.cpp index 1e5813467b..127f789b19 100644 --- a/protocols/Xfire/src/options.cpp +++ b/protocols/Xfire/src/options.cpp @@ -481,15 +481,15 @@ static INT_PTR CALLBACK DlgProcOpts3(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR break; case WM_NOTIFY: - { switch (((LPNMHDR)lParam)->idFrom) { case IDC_TREE: { switch (((NMHDR*)lParam)->code) { //wenn was geändert wurde, apply aktivieren - case TVN_SELCHANGEDA: + case TVN_SELCHANGED: SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0); break; + case TVN_KEYDOWN: //tastatursteuerung { NMTVKEYDOWN* ptkd = (NMTVKEYDOWN*)lParam; @@ -512,7 +512,7 @@ static INT_PTR CALLBACK DlgProcOpts3(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR } } } - } + switch (((LPNMHDR)lParam)->code) { case PSN_APPLY: |