diff options
-rwxr-xr-x | options.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/options.cpp b/options.cpp index aab7884..2535c83 100755 --- a/options.cpp +++ b/options.cpp @@ -1287,23 +1287,6 @@ static BOOL CALLBACK DlgProcLoadPublicKey(HWND hwndDlg,UINT msg,WPARAM wParam,LP }
}
break;
- case WM_HOTKEY:
- {
- if(lParam & MOD_CONTROL)
- {
- if(wParam == 1)
- {
-// TCHAR sel[2048] = {0};
-// int c = SendMessage(GetDlgItem(hwndDlg, IDC_PUBLIC_KEY_EDIT), EM_GETSELTEXT, 0, (LPARAM)&sel);
-// MessageBoxA(NULL, "ctrl+c", "", MB_OK);
- }
- else if(wParam == 2)
- {
- SendMessage(GetDlgItem(hwndDlg, IDC_PUBLIC_KEY_EDIT), EM_SETSEL, 0, -1);
- }
- }
- }
- break;
case WM_CLOSE:
DestroyWindow(hwndDlg);
break;
|