X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..703f03c342e4fd0c7f5452831afaff67b4bfecc2:/docs/latex/wx/boxsizer.tex diff --git a/docs/latex/wx/boxsizer.tex b/docs/latex/wx/boxsizer.tex index 2db19fd414..4fa4a2e852 100644 --- a/docs/latex/wx/boxsizer.tex +++ b/docs/latex/wx/boxsizer.tex @@ -44,8 +44,9 @@ a sizer and its children can be controlled by the three parameters of the Add() // we want to get a dialog that is stretchable because it // has a text ctrl at the top and two buttons at the bottom -MyDialog::MyDialog(wxFrame *parent, wxWindowID id, const wxString &title ) : - wxDialog( parent, id, title, wxDefaultPosition, wxDefaultSize, wxDIALOG_STYLE | wxRESIZE_BORDER ) +MyDialog::MyDialog(wxFrame *parent, wxWindowID id, const wxString &title ) + : wxDialog(parent, id, title, wxDefaultPosition, wxDefaultSize, + wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) { wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );