Applied patch [ 800183 ] wxFlexGridSizer::RemoveGrowableRow/Col fix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23515 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
f8252483ec
commit
8d2474f486
@ -1288,8 +1288,9 @@ void wxFlexGridSizer::AddGrowableRow( size_t idx, int proportion )
|
||||
m_growableRowsProportions.Add( proportion );
|
||||
}
|
||||
|
||||
void wxFlexGridSizer::RemoveGrowableRow( size_t WXUNUSED(idx) )
|
||||
void wxFlexGridSizer::RemoveGrowableRow( size_t idx )
|
||||
{
|
||||
m_growableRows.Remove( idx );
|
||||
}
|
||||
|
||||
void wxFlexGridSizer::AddGrowableCol( size_t idx, int proportion )
|
||||
@ -1298,8 +1299,9 @@ void wxFlexGridSizer::AddGrowableCol( size_t idx, int proportion )
|
||||
m_growableColsProportions.Add( proportion );
|
||||
}
|
||||
|
||||
void wxFlexGridSizer::RemoveGrowableCol( size_t WXUNUSED(idx) )
|
||||
void wxFlexGridSizer::RemoveGrowableCol( size_t idx )
|
||||
{
|
||||
m_growableCols.Remove( idx );
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user