From c1dcb1a0b409e12a7ce98fcddde0eb74c10b52ec Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 5 Nov 2006 00:45:27 +0000 Subject: [PATCH] no changes, just removed commented out line git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43080 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/checklst/checklst.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/samples/checklst/checklst.cpp b/samples/checklst/checklst.cpp index df48055236..a6e13a4467 100644 --- a/samples/checklst/checklst.cpp +++ b/samples/checklst/checklst.cpp @@ -127,7 +127,7 @@ BEGIN_EVENT_TABLE(CheckListBoxFrame, wxFrame) EVT_MENU(Menu_Selection, CheckListBoxFrame::OnToggleSelection) EVT_MENU(Menu_Extended, CheckListBoxFrame::OnToggleExtended) EVT_MENU(Menu_Sorting, CheckListBoxFrame::OnToggleSorting) - + EVT_MENU(Menu_InsertItemsStart, CheckListBoxFrame::OnInsertItemsStart) EVT_MENU(Menu_InsertItemsMiddle, CheckListBoxFrame::OnInsertItemsMiddle) EVT_MENU(Menu_InsertItemsEnd, CheckListBoxFrame::OnInsertItemsEnd) @@ -269,8 +269,6 @@ void CheckListBoxFrame::CreateCheckListbox(long flags) flags ); - //m_pListBox->SetBackgroundColour(*wxGREEN); - delete [] astrChoices; // set grey background for every second entry @@ -406,7 +404,7 @@ void CheckListBoxFrame::OnToggleExtended(wxCommandEvent& event) sizer->Insert(0, m_pListBox, 1, wxGROW | wxALL, 10); - m_panel->Layout(); + m_panel->Layout(); } void CheckListBoxFrame::OnToggleSorting(wxCommandEvent& event) @@ -420,7 +418,7 @@ void CheckListBoxFrame::OnToggleSorting(wxCommandEvent& event) sizer->Insert(0, m_pListBox, 1, wxGROW | wxALL, 10); - m_panel->Layout(); + m_panel->Layout(); } void CheckListBoxFrame::OnListboxSelect(wxCommandEvent& event) -- 2.47.2