regenerated after version.bkl changes fixing -compatibility_version for Darwin

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35784 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-10-03 21:05:25 +00:00
parent 6ce8b84846
commit 4cbcfb73a0
701 changed files with 6686 additions and 6516 deletions

View File

@@ -162,6 +162,13 @@ MyFrame::MyFrame(const wxString& title)
SetMenuBar(menuBar);
#endif // wxUSE_MENUS
wxPanel *p = new wxPanel(this);
new wxStaticText(p, -1, _T("Foo"), wxPoint(10, 10));
wxStaticText *text = new wxStaticText(p, -1, _T("This is a very, very, extremely and even more than you could have thought it long string"), wxPoint(10, 40));
text->Wrap(150);
(new wxTextCtrl(p, -1, _T("Hi"), wxPoint(10, 70)))->SetEditable(false);
#if wxUSE_STATUSBAR
// create a status bar just for fun (by default with 1 pane only)
CreateStatusBar(2);