diff options
author | George Hazan <george.hazan@gmail.com> | 2013-12-21 12:35:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-12-21 12:35:17 +0000 |
commit | 55148988e8302c760e84319811b903906d716acd (patch) | |
tree | 5d753233d6d2402d8e64b28ea3aa900c55faa190 /protocols/Gadu-Gadu/src | |
parent | c38ee02b8458484ce9ab752229a8282417816aa1 (diff) |
fixes ticket #485: Not possible to leave the advanced search dialog with keyboard
git-svn-id: http://svn.miranda-ng.org/main/trunk@7317 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/src')
-rw-r--r-- | protocols/Gadu-Gadu/src/gg_proto.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/protocols/Gadu-Gadu/src/gg_proto.cpp b/protocols/Gadu-Gadu/src/gg_proto.cpp index 0ccbb67a87..69b3afc0f9 100644 --- a/protocols/Gadu-Gadu/src/gg_proto.cpp +++ b/protocols/Gadu-Gadu/src/gg_proto.cpp @@ -557,14 +557,6 @@ static INT_PTR CALLBACK gg_advancedsearchdlgproc(HWND hwndDlg,UINT message,WPARA SendDlgItemMessage(hwndDlg, IDC_GENDER, CB_ADDSTRING, 0, (LPARAM)TranslateT("Female")); // 1
SendDlgItemMessage(hwndDlg, IDC_GENDER, CB_ADDSTRING, 0, (LPARAM)TranslateT("Male")); // 2
return TRUE;
-
- case WM_COMMAND:
- switch(LOWORD(wParam)) {
- case IDOK:
- SendMessage(GetParent(hwndDlg), WM_COMMAND,MAKEWPARAM(IDOK,BN_CLICKED), (LPARAM)GetDlgItem(GetParent(hwndDlg),IDOK));
- break;
- }
- break;
}
return FALSE;
}
|