]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/combobox.cpp
Needed some variation; got bored of seeing the compilation errors for this
[wxWidgets.git] / src / msw / combobox.cpp
index 7104620710ec301f820186d4a536fb4e63c2a093..38de733962bf9d2303cec878ede539470ad2628f 100644 (file)
@@ -323,15 +323,6 @@ void wxComboBox::DoSetSize(int x, int y,
                            int sizeFlags)
 {
     wxControl::DoSetSize(x, y, width, height, sizeFlags);
-
-    // VZ: for unknown (to me) reasons, if we don't do this, the combobox
-    //     somehow is hidden by the static boxes, although static boxes do
-    //     put themselves at the very end of Z-order.
-    if ( !::SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0,
-                         SWP_NOMOVE | SWP_NOSIZE) )
-    {
-        wxLogLastError(_T("SetWindowPos"));
-    }
 }
 
 #endif