No real changes, just removed unused variables from samples.

Don't define constants which are never used to avoid clang
-Wunused-const-variable warnings.
This commit is contained in:
Vadim Zeitlin
2015-04-07 00:05:59 +02:00
parent b6d0e176c0
commit 95d8daae1a
3 changed files with 0 additions and 14 deletions

View File

@@ -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"));