[SDK][INCLUDE] layout.h: Delete an assertion for window style

WS_SIZEBOX or WS_THICKFRAME. CORE-9281
This commit is contained in:
Katayama Hirofumi MZ 2021-02-27 22:59:00 +09:00
parent 7caf9e9d48
commit 6b2e79d067

View file

@ -237,9 +237,7 @@ LayoutInit(HWND hwndParent, const LAYOUT_INFO *pLayouts, INT cLayouts)
}
memcpy(pData->m_pLayouts, pLayouts, cb);
/* NOTE: The parent window must have initially WS_SIZEBOX style. */
assert(IsWindow(hwndParent));
assert(GetWindowLongPtrW(hwndParent, GWL_STYLE) & WS_SIZEBOX);
pData->m_hwndParent = hwndParent;