compilation fix after wxScrollHelper changes (ctor argument is now not optional and SetWin doesn't exist any more)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35927 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-10-18 11:13:34 +00:00
parent 6694ee19fc
commit afe1376994
2 changed files with 3 additions and 3 deletions

View File

@@ -84,6 +84,7 @@ wxListBox::wxListBox(wxWindow *parent,
long style,
const wxValidator& validator,
const wxString &name)
:wxScrollHelper(this)
{
Init();
@@ -135,8 +136,6 @@ bool wxListBox::Create(wxWindow *parent,
validator, name) )
return false;
SetWindow(this);
m_strings = new wxArrayString;
Set(n, choices);