summaryrefslogtreecommitdiff
path: root/src/gui_w48.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-02-17 16:31:32 +0100
committerBram Moolenaar <Bram@vim.org>2010-02-17 16:31:32 +0100
commit33d0b69ab8112f57a0b4c35a6a1add440a60b81f (patch)
tree20660069b283c966410a4e17df020fa211b429e2 /src/gui_w48.c
parent165641da2534f00507fffb58a8826d5f3410049e (diff)
downloadvim-git-33d0b69ab8112f57a0b4c35a6a1add440a60b81f.tar.gz
updated for version 7.2.362v7.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)
Diffstat (limited to 'src/gui_w48.c')
-rw-r--r--src/gui_w48.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui_w48.c b/src/gui_w48.c
index 40af60fa9..ddaf1fba3 100644
--- a/src/gui_w48.c
+++ b/src/gui_w48.c
@@ -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);
}