eVC++ 3.0 doesn't know WS_THICKFRAME
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
af8491078d
commit
d9397a05a3
@ -166,7 +166,11 @@ WXDWORD wxTopLevelWindowMSW::MSWGetStyle(long style, WXDWORD *exflags) const
|
||||
|
||||
// border and caption styles
|
||||
if ( style & wxRESIZE_BORDER )
|
||||
#ifdef __WXWINCE__
|
||||
msflags = msflags;
|
||||
#else
|
||||
msflags |= WS_THICKFRAME;
|
||||
#endif
|
||||
else if ( exflags && ((style & wxBORDER_DOUBLE) || (style & wxBORDER_RAISED)) )
|
||||
*exflags |= WS_EX_DLGMODALFRAME;
|
||||
else if ( !(style & wxBORDER_NONE) )
|
||||
|
Loading…
Reference in New Issue
Block a user