diff options
| author | Pietro Gagliardi <[email protected]> | 2014-10-16 14:06:02 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-10-16 14:06:02 -0400 |
| commit | 6cefa04d71d80db0dcd5f7daed17e17cb02c688b (patch) | |
| tree | d6b46cf394fd7e0c2405a510531417492da215a8 | |
| parent | 3316386c2a4e83c50d1c3fe20d9e0d1a9c81fd53 (diff) | |
Removed containerResize() from container_windows.c; it no longer exists.
| -rw-r--r-- | newctrl/container_windows.c | 5 |
1 files changed, 0 insertions, 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); } |
