From 7048b7ec4a738e9b8ced526b15570b47a2269855 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 8 Mar 2015 16:10:20 +0100 Subject: [PATCH] No changes, just remove an unused variable from the widgets sample. Thanks clang for the warning. --- samples/widgets/choice.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/samples/widgets/choice.cpp b/samples/widgets/choice.cpp index 94f9f1aad2..1888d6786f 100644 --- a/samples/widgets/choice.cpp +++ b/samples/widgets/choice.cpp @@ -215,13 +215,6 @@ void ChoiceWidgetsPage::CreateContent() wxT("&Set choice parameters")); wxSizer *sizerLeft = new wxStaticBoxSizer(box, wxVERTICAL); - static const wxString modes[] = - { - wxT("single"), - wxT("extended"), - wxT("multiple"), - }; - m_chkSort = CreateCheckBoxAndAddToSizer(sizerLeft, wxT("&Sort items")); wxButton *btn = new wxButton(this, ChoicePage_Reset, wxT("&Reset"));