forked from aniani/vim
updated for version 7.2.362
Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries. Solution: Instead of handling WM_NCCREATE, create wide text area window class if the parent window iw side. (Sergey Khorev)
This commit is contained in:
@@ -1084,13 +1084,6 @@ _TextAreaWndProc(
|
||||
case WM_NOTIFY: Handle_WM_Notify(hwnd, (LPNMHDR)lParam);
|
||||
return TRUE;
|
||||
#endif
|
||||
/* Workaround for the problem that MyWindowProc() returns FALSE on 64
|
||||
* bit windows when cross-compiled using Mingw libraries. (Andy
|
||||
* Kittner) */
|
||||
case WM_NCCREATE:
|
||||
MyWindowProc(hwnd, uMsg, wParam, lParam);
|
||||
return TRUE;
|
||||
|
||||
default:
|
||||
return MyWindowProc(hwnd, uMsg, wParam, lParam);
|
||||
}
|
||||
|
Reference in New Issue
Block a user