Fixed typo in wxStaticBoxSizer::CalcMin().

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5021 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 1999-12-17 18:32:25 +00:00
parent b704229ee2
commit cae31b8b52

View File

@ -570,7 +570,7 @@ wxSize wxStaticBoxSizer::CalcMin()
int other_border = 5;
wxSize ret( wxBoxSizer::CalcMin() );
ret.x += 2*top_border;
ret.x += 2*other_border;
ret.y += other_border + top_border;
return ret;