From 6cefa04d71d80db0dcd5f7daed17e17cb02c688b Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 16 Oct 2014 14:06:02 -0400 Subject: [PATCH] Removed containerResize() from container_windows.c; it no longer exists. --- newctrl/container_windows.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/newctrl/container_windows.c b/newctrl/container_windows.c index 1f9b691..ea0a2f7 100644 --- a/newctrl/container_windows.c +++ b/newctrl/container_windows.c @@ -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); }