eVC 4.0 just ignores it.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26723
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if (msflags & WS_BORDER)
msflags |= WS_OVERLAPPED;
}
+
// border and caption styles
if ( style & wxRESIZE_BORDER )
-#ifdef __WXWINCE__
+#ifndef WS_THICKFRAME
msflags = msflags;
#else
msflags |= WS_THICKFRAME;
msflags |= WS_POPUP;
if ( style & wxCAPTION )
+#ifdef __WXWINCE__
+ msflags = msflags;
+#else
msflags |= WS_CAPTION;
+#endif
else
msflags |= WS_POPUP;
+ return msflags;
+
// next translate the individual flags
if ( style & wxMINIMIZE_BOX )
msflags |= WS_MINIMIZEBOX;
// Keep this here because it saves recoding this function in wxTinyFrame
if ( style & (wxTINY_CAPTION_VERT | wxTINY_CAPTION_HORIZ) )
msflags |= WS_CAPTION;
-
+
if ( exflags )
{
if ( !(GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) )