From 8e1d4f96f5f19b421599c597e6f3196c8dbe870a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 14 May 1999 14:44:03 +0000 Subject: [PATCH] minor changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/checklst/checklst.cpp | 2 +- samples/listctrl/listtest.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/checklst/checklst.cpp b/samples/checklst/checklst.cpp index dfc27c262a..48af69d393 100644 --- a/samples/checklst/checklst.cpp +++ b/samples/checklst/checklst.cpp @@ -147,7 +147,7 @@ CheckListBoxFrame::CheckListBoxFrame(wxFrame *frame, panel, // parent Control_Listbox, // control id wxPoint(10, 10), // listbox poistion - wxSize(400, 200), // listbox size + wxSize(400, 100), // listbox size WXSIZEOF(aszChoices), // number of strings astrChoices // array of strings ); diff --git a/samples/listctrl/listtest.cpp b/samples/listctrl/listtest.cpp index d5578d2bee..4d1ffa42c8 100644 --- a/samples/listctrl/listtest.cpp +++ b/samples/listctrl/listtest.cpp @@ -462,7 +462,7 @@ void MyListCtrl::OnActivated(wxListEvent& WXUNUSED(event)) text->WriteText("OnActivated\n"); } -void MyListCtrl::OnListKeyDown(wxListEvent& WXUNUSED(event)) +void MyListCtrl::OnListKeyDown(wxListEvent& event) { if ( !wxGetApp().GetTopWindow() ) return;