]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/choice.cpp
removed wxImage::operator wxBitmap()
[wxWidgets.git] / src / msw / choice.cpp
index 50612f6153bbb660dd306823e908e41974badfe4..41e23a5ece2874932622de928d43335a8f1d0a6c 100644 (file)
@@ -64,6 +64,10 @@ bool wxChoice::Create(wxWindow *parent,
     if ( style & wxCB_SORT )
         msStyle |= CBS_SORT;
 
+    if ( style & wxCLIP_SIBLINGS )
+        msStyle |= WS_CLIPSIBLINGS;
+
+
     // Experience shows that wxChoice vs. wxComboBox distinction confuses
     // quite a few people - try to help them
     wxASSERT_MSG( !(style & wxCB_DROPDOWN) &&