git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57309
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if ( item->GetWindow() )
item->GetWindow()->SetContainingSizer( this );
if ( item->GetWindow() )
item->GetWindow()->SetContainingSizer( this );
+ // extend the number of rows/columns of the underlying wxFlexGridSizer if
+ // necessary
+ int row, col;
+ item->GetEndPos(row, col);
+ row++;
+ col++;
+
+ if ( row > GetRows() )
+ SetRows(row);
+ if ( col > GetCols() )
+ SetCols(col);
+