From: Vadim Zeitlin Date: Fri, 13 Feb 2004 22:33:02 +0000 (+0000) Subject: DMC compilation fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f567fcfadc1c90234e881dfa377bdfa27ffa70b3 DMC compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25793 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/scrollsub/scrollsub.cpp b/samples/scrollsub/scrollsub.cpp index 9539d17625..a56b9d8a11 100644 --- a/samples/scrollsub/scrollsub.cpp +++ b/samples/scrollsub/scrollsub.cpp @@ -286,8 +286,8 @@ MyCanvas::MyCanvas( wxScrolledWindow *parent, MyTopLabels *top, MyRightLabels *r (void)new wxTextCtrl( this, -1, _T("Text I"), wxPoint(0,100), wxSize(100,25) ); (void)new wxTextCtrl( this, -1, _T("Text II"), wxPoint(200,100), wxSize(100,25) ); - (void)new wxComboBox( this, -1, _T("ComboBox I"), wxPoint(0,150), wxSize(100,25), 0, NULL ); - (void)new wxComboBox( this, -1, _T("ComboBox II"), wxPoint(200,150), wxSize(100,25), 0, NULL ); + (void)new wxComboBox( this, -1, _T("ComboBox I"), wxPoint(0,150), wxSize(100,25)); + (void)new wxComboBox( this, -1, _T("ComboBox II"), wxPoint(200,150), wxSize(100,25)); SetBackgroundColour( wxT("WHEAT") );