if (m_orient == wxVERTICAL)
{
- long height = size.y;
+ wxCoord height = size.y;
if (item->GetOption())
{
height = (delta * weight) + extra;
}
else
{
- long width = size.x;
+ wxCoord width = size.x;
if (item->GetOption())
{
width = (delta * weight) + extra;
wxSize wxBoxSizer::CalcMin()
{
if (m_children.GetCount() == 0)
- return wxSize(2,2);
+ return wxSize(10,10);
m_stretchable = 0;
m_minWidth = 0;
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;