Corrected dataobj.h/.cpp, corrected listbox to use non-integral height

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@90 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-06-13 17:09:59 +00:00
parent 7c351dad14
commit 40e1a9c025
10 changed files with 25 additions and 47 deletions

View File

@@ -184,13 +184,10 @@ bool wxListBox::Create(wxWindow *parent, const wxWindowID id,
// we don't support LBS_OWNERDRAWVARIABLE yet
wstyle |= LBS_OWNERDRAWFIXED;
}
#else
// Change from previous versions of wxWin: JACS Nov. 1995
// Not sure whether to have integral, or no integral
// style. With the latter we may get partial items showing.
// VZ: also it makes life more difficult for owner-drawn controls
wstyle |= LBS_NOINTEGRALHEIGHT;
#endif
// Without this style, you get unexpected heights, so e.g. constraint layout
// doesn't work properly
wstyle |= LBS_NOINTEGRALHEIGHT;
bool want3D;
WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D) ;