Compilation fix after wxFlexGridSizer ctors change.
wxFlexGridSizer ctor was even used incorrectly in a wx sample: the sizer was supposed to have 2 columns, not 4 with 2 pixels of vertical gap. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61639 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
58c69c44d0
commit
bb9e19db3d
@ -1596,7 +1596,7 @@ DnDShapeDialog::DnDShapeDialog(wxFrame *parent, DnDShape *shape)
|
||||
// attributes
|
||||
wxStaticBox* box = new wxStaticBox( this, wxID_ANY, wxT("&Attributes") );
|
||||
wxStaticBoxSizer* attrSizer = new wxStaticBoxSizer( box, wxHORIZONTAL );
|
||||
wxFlexGridSizer* xywhSizer = new wxFlexGridSizer( 4, 2 );
|
||||
wxFlexGridSizer* xywhSizer = new wxFlexGridSizer( 2 );
|
||||
|
||||
wxStaticText* st;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user