]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/control.cpp
Added WS_VISIBLE style
[wxWidgets.git] / src / msw / control.cpp
index 4eb36ecd3a7fa85a9a2dd4e7a10d285ef5922aa8..e05ee6476d792b495c3e31d0f71008aebfd05bf5 100644 (file)
@@ -93,16 +93,12 @@ bool wxControl::MSWCreateControl(const wxChar *classname,
                                  const wxString& label,
                                  WXDWORD exstyle)
 {
-    // want3D tells us whether or not the style specified a 3D border.
-    // If so, under WIN16 we can use Ctl3D to give it an appropriate style.
-    // Sometimes want3D is used to indicate that the non-extended style should have
-    // WS_BORDER.
-    bool want3D = TRUE;
-
     // if no extended style given, determine it ourselves
     if ( exstyle == (WXDWORD)-1 )
     {
-        exstyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D);
+//        exstyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D);
+        exstyle = 0;
+        (void) MSWGetStyle(GetWindowStyle(), & exstyle) ;
     }
 
     // all controls should have this style