Removed containerResize() from container_windows.c; it no longer exists.

This commit is contained in:
Pietro Gagliardi 2014-10-16 14:06:02 -04:00
parent 3316386c2a
commit 6cefa04d71
1 changed files with 0 additions and 5 deletions

View File

@ -23,11 +23,6 @@ static LRESULT CALLBACK containerWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LP
if (sharedWndProc(hwnd, uMsg, wParam, lParam, &lResult))
return lResult;
switch (uMsg) {
case WM_SIZE:
if (GetClientRect(hwnd, &r) == 0)
xpanic("error getting client rect for Window in WM_SIZE", GetLastError());
containerResize(data, &r);
return 0;
default:
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
}