Added WS_VSCROLL and WSHSCROLL styles again

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5644 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2000-01-24 21:53:19 +00:00
parent e5a2291ac7
commit ae77fce66c

View File

@ -97,7 +97,7 @@ bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
int height = size.y;
long msStyle = WS_CHILD | WS_TABSTOP | WS_VISIBLE |
CBS_AUTOHSCROLL | CBS_NOINTEGRALHEIGHT;
WS_VSCROLL | WS_HSCROLL | CBS_AUTOHSCROLL | CBS_NOINTEGRALHEIGHT;
if (m_windowStyle & wxCB_READONLY)
msStyle |= CBS_DROPDOWNLIST;