Compilation fix for changed wxSizer::Remove() signature.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon 2003-01-25 16:44:43 +00:00
parent c781807d89
commit 5709329c88

View File

@ -542,7 +542,7 @@ void wxPropertyListView::ShowListBoxControl(bool show)
if (show)
m_middleSizer->Prepend( m_valueList, 0, wxTOP|wxLEFT|wxRIGHT | wxEXPAND, 3 );
else
m_middleSizer->Remove( (size_t) 0 );
m_middleSizer->Remove( 0 );
m_propertyWindow->Layout();
}