X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5982058625b149a820cc53a2e8098026e9d3ce4..ab6ea1ac2f52ecc7e60aae5f4e8f53585d817920:/contrib/samples/deprecated/proplist/proplist.cpp diff --git a/contrib/samples/deprecated/proplist/proplist.cpp b/contrib/samples/deprecated/proplist/proplist.cpp index 82f3ab52e1..29b746899f 100644 --- a/contrib/samples/deprecated/proplist/proplist.cpp +++ b/contrib/samples/deprecated/proplist/proplist.cpp @@ -9,10 +9,6 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -#pragma implementation "proplist_sample.h" -#endif - // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" @@ -75,7 +71,7 @@ bool MyApp::OnInit(void) m_mainFrame->Show(true); SetTopWindow(m_mainFrame); - + return true; } @@ -182,7 +178,7 @@ void MyApp::PropertyListTest(bool useDialog) if (useDialog) { propDialog = new PropListDialog(view, NULL, _T("Property Sheet Test"), - wxDefaultPosition, wxSize(400, 500), wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODELESS); + wxDefaultPosition, wxSize(400, 500)); m_childWindow = propDialog; } else @@ -230,7 +226,7 @@ void MyApp::PropertyFormTest(bool useDialog) if (useDialog) { propDialog = new PropFormDialog(view, NULL, _T("Property Form Test"), - wxDefaultPosition, wxSize(380, 250), wxDEFAULT_DIALOG_STYLE|wxDIALOG_MODAL); + wxDefaultPosition, wxSize(380, 250)); m_childWindow = propDialog; } else @@ -266,7 +262,7 @@ void MyApp::PropertyFormTest(bool useDialog) panel->SetConstraints(c); } #endif - + // Add items to the panel wxButton *okButton = new wxButton(panel, wxID_OK, _T("OK"), wxDefaultPosition, wxSize(80, 26), 0, wxDefaultValidator, _T("ok")); @@ -306,8 +302,8 @@ void MyApp::PropertyFormTest(bool useDialog) okButton->SetConstraints(c); // The name of this text item matches the "fred" property - wxTextCtrl *text = new wxTextCtrl(panel, wxID_ANY, _T("Fred"), wxDefaultPosition, - wxSize( 200, wxDefaultSize.y), 0, wxDefaultValidator, _T("fred")); + wxTextCtrl *text = new wxTextCtrl(panel, wxID_ANY, _T("Fred"), wxDefaultPosition, + wxSize( 200, wxDefaultCoord), 0, wxDefaultValidator, _T("fred")); c = new wxLayoutConstraints; c->left.SameAs(panel, wxLeft, 4);