From: Julian Smart Date: Mon, 24 Jan 2000 21:53:19 +0000 (+0000) Subject: Added WS_VSCROLL and WSHSCROLL styles again X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ae77fce66c3061534832af3eec7e636723859121 Added WS_VSCROLL and WSHSCROLL styles again git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5644 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/combobox.cpp b/src/msw/combobox.cpp index d250452a79..903b6b5e7c 100644 --- a/src/msw/combobox.cpp +++ b/src/msw/combobox.cpp @@ -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;