X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b556474c5d6e6d7e731432c66f10a837c757d36a..fac46b97d649dd611fb189524d7ce5f66f99a89a:/samples/combo/combo.cpp diff --git a/samples/combo/combo.cpp b/samples/combo/combo.cpp index e31bcee2e0..2ed5167ad5 100644 --- a/samples/combo/combo.cpp +++ b/samples/combo/combo.cpp @@ -624,7 +624,7 @@ MyFrame::MyFrame(const wxString& title) // the "About" item should be in the help menu wxMenu *helpMenu = new wxMenu; - helpMenu->Append(ComboCtrl_About, wxT("&About...\tF1"), wxT("Show about dialog")); + helpMenu->Append(ComboCtrl_About, wxT("&About\tF1"), wxT("Show about dialog")); fileMenu->Append(ComboCtrl_Compare, wxT("&Compare against wxComboBox..."), wxT("Show some wxOwnerDrawnComboBoxes side-by-side with native wxComboBoxes.")); @@ -927,7 +927,7 @@ MyFrame::MyFrame(const wxString& title) panel->SetSizer( topSizer ); topSizer->SetSizeHints( panel ); - SetSize(740,400); + Fit(); Centre(); }