From 2a0e49a46ed7dfec7b71b5c517f79bdb080dc6d9 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 29 Jul 2002 19:17:44 +0000 Subject: [PATCH] Added wxComboBox to scroll test to demonstrate Mac problem git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16318 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/scrollsub/scrollsub.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/samples/scrollsub/scrollsub.cpp b/samples/scrollsub/scrollsub.cpp index f47a253c6b..cc8d3acc7e 100644 --- a/samples/scrollsub/scrollsub.cpp +++ b/samples/scrollsub/scrollsub.cpp @@ -286,6 +286,9 @@ MyCanvas::MyCanvas( wxScrolledWindow *parent, MyTopLabels *top, MyRightLabels *r (void)new wxTextCtrl( this, -1, "Text I", wxPoint(0,100), wxSize(100,25) ); (void)new wxTextCtrl( this, -1, "Text II", wxPoint(200,100), wxSize(100,25) ); + (void)new wxComboBox( this, -1, "ComboBox I", wxPoint(0,150), wxSize(100,25), 0, NULL ); + (void)new wxComboBox( this, -1, "ComboBox II", wxPoint(200,150), wxSize(100,25), 0, NULL ); + SetBackgroundColour( wxT("WHEAT") ); SetCursor( wxCursor( wxCURSOR_IBEAM ) ); -- 2.45.2