]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
added missing object file for vidxanm to unix makefile
[wxWidgets.git] / src / msw / window.cpp
index 33b7de5dcd106754ffbf76bbefe2da2e39f7c393..a011dca8aba618a9aed2cc679ce91bac0e9bc2e1 100644 (file)
@@ -302,6 +302,7 @@ bool wxWindow::Create(wxWindow *parent, wxWindowID id,
     if ( style & wxTHICK_FRAME )
         msflags |= WS_THICKFRAME;
 
+    //msflags |= WS_CHILD | WS_CLIPSIBLINGS | WS_VISIBLE;
     msflags |= WS_CHILD | WS_VISIBLE;
     if ( style & wxCLIP_CHILDREN )
         msflags |= WS_CLIPCHILDREN;
@@ -2354,7 +2355,11 @@ bool wxWindow::MSWCreate(int id,
     {
         int controlId = 0;
         if ( style & WS_CHILD )
+          {
             controlId = id;
+            // all child windows should clip their siblings
+            // style |= WS_CLIPSIBLINGS;
+          }
 
         wxString className(wclass);
         if ( GetWindowStyleFlag() & wxNO_FULL_REPAINT_ON_RESIZE )