From 2aabf6594cb0fb4f8db16771c988bf5a6eab2c4b Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 5 May 2015 21:55:21 +0000 Subject: Unicode windows procedure, suddenly... git-svn-id: http://svn.miranda-ng.org/main/trunk@13456 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/fonts/FontOptions.cpp | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'src/modules/fonts') diff --git a/src/modules/fonts/FontOptions.cpp b/src/modules/fonts/FontOptions.cpp index 2d290d21c2..0a21cd878a 100644 --- a/src/modules/fonts/FontOptions.cpp +++ b/src/modules/fonts/FontOptions.cpp @@ -1157,22 +1157,18 @@ static INT_PTR CALLBACK DlgProcLogOptions(HWND hwndDlg, UINT msg, WPARAM wParam, if (((LPNMHDR) lParam)->idFrom == IDC_FONTGROUP) { switch(((NMHDR*)lParam)->code) { - case TVN_SELCHANGEDA: // !!!! This needs to be here - both !! - case TVN_SELCHANGEDW: + case TVN_SELCHANGED: SendMessage(hwndDlg, UM_SETFONTGROUP, 0, 0); break; - case TVN_DELETEITEMA: // no idea why both TVN_SELCHANGEDA/W should be there but let's keep this both too... - case TVN_DELETEITEMW: - { - TreeItem *treeItem = (TreeItem *)(((LPNMTREEVIEW)lParam)->itemOld.lParam); - if (treeItem) { - mir_free(treeItem->groupName); - mir_free(treeItem->paramName); - mir_free(treeItem); - } - break; + case TVN_DELETEITEM: + TreeItem *treeItem = (TreeItem *)(((LPNMTREEVIEW)lParam)->itemOld.lParam); + if (treeItem) { + mir_free(treeItem->groupName); + mir_free(treeItem->paramName); + mir_free(treeItem); } + break; } } break; -- cgit v1.2.3