]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/combobox.cpp
Compilaton fixes.
[wxWidgets.git] / src / msw / combobox.cpp
index f7c9e312e57bce7ec44959319806b66f0bee2594..e296bf6ca6a536ffb6a94a69f6042d297dc89db2 100644 (file)
@@ -312,8 +312,10 @@ bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
                    CBS_AUTOHSCROLL | CBS_NOINTEGRALHEIGHT /* | WS_CLIPSIBLINGS */;
     if ( style & wxCB_READONLY )
         msStyle |= CBS_DROPDOWNLIST;
+#ifndef __WXWINCE__
     else if ( style & wxCB_SIMPLE )
         msStyle |= CBS_SIMPLE; // A list (shown always) and edit control
+#endif
     else
         msStyle |= CBS_DROPDOWN;