Removed containerResize() from container_windows.c; it no longer exists.
This commit is contained in:
parent
3316386c2a
commit
6cefa04d71
|
@ -23,11 +23,6 @@ static LRESULT CALLBACK containerWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LP
|
||||||
if (sharedWndProc(hwnd, uMsg, wParam, lParam, &lResult))
|
if (sharedWndProc(hwnd, uMsg, wParam, lParam, &lResult))
|
||||||
return lResult;
|
return lResult;
|
||||||
switch (uMsg) {
|
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:
|
default:
|
||||||
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
|
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue