From d2befda32f447caf1e2f417927ba17cedfe8b6ef Mon Sep 17 00:00:00 2001 From: "J. Russell Smyth" Date: Thu, 12 Aug 1999 05:09:59 +0000 Subject: [PATCH] Changed wxBox to wxBoxSizer to fit current API git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3351 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/layout/layout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/layout/layout.cpp b/samples/layout/layout.cpp index 1392d68921..14532691e3 100644 --- a/samples/layout/layout.cpp +++ b/samples/layout/layout.cpp @@ -267,7 +267,7 @@ NewSizerFrame::NewSizerFrame(wxFrame *frame, char *title, int x, int y ): // has a text ctrl in the middle. at the bottom, we have // two buttons which. - wxBox *topsizer = new wxBox( wxVERTICAL ); + wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); // 1) top: create wxStaticText with minimum size equal to its default size topsizer->Add( @@ -296,7 +296,7 @@ NewSizerFrame::NewSizerFrame(wxFrame *frame, char *title, int x, int y ): // 4) bottom: create two centred wxButtons - wxBox *button_box = new wxBox( wxHORIZONTAL ); + wxBoxSizer *button_box = new wxBoxSizer( wxHORIZONTAL ); button_box->Add( new wxButton( this, -1, "Two buttons in a box" ), 0, // make horizontally unstretchable -- 2.47.2