Bug 1047842 - Pass WM_GETTEXTLENGTH messages in ipc wait for notify calls to DefWindowProc. r=bent

This commit is contained in:
Jim Mathies
2014-08-13 04:39:47 -05:00
parent 3f9b10f79c
commit 7219112f6f

View File

@@ -296,7 +296,8 @@ ProcessOrDeferMessage(HWND hwnd,
case WM_GETTEXT:
case WM_NCHITTEST:
case WM_STYLECHANGING: // Intentional fall-through.
case WM_WINDOWPOSCHANGING: {
case WM_WINDOWPOSCHANGING:
case WM_GETTEXTLENGTH: {
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}