-forgot to save the file before committing - this is the actual fix from 27703

svn path=/trunk/; revision=27705
This commit is contained in:
Christoph von Wittich 2007-07-16 23:02:29 +00:00
parent 0a51ea233b
commit 10c5cdc533

View file

@ -193,6 +193,10 @@ User32CreateWindowEx(DWORD dwExStyle,
ControlsInitialized = ControlsInit(ClassName.Buffer);
}
/* remove DS_SHELLFONT style because it conflicts with WS_EX_MDICHILD */
if (dwExStyle & DS_SHELLFONT)
dwExStyle &= ~DS_SHELLFONT;
if (dwExStyle & WS_EX_MDICHILD)
{
POINT mPos[2];