X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4f37a20b74fc6159f92ca0397018bc9dd5d32b6e..a333f34d91ae845d39ca8a833290e9a1c3d04749:/samples/listbox/lboxtest.cpp diff --git a/samples/listbox/lboxtest.cpp b/samples/listbox/lboxtest.cpp index 85e6832751..df14dbd815 100644 --- a/samples/listbox/lboxtest.cpp +++ b/samples/listbox/lboxtest.cpp @@ -38,6 +38,7 @@ // for all others, include the necessary headers #ifndef WX_PRECOMP + #include "wx/wx.h" #include "wx/app.h" #include "wx/frame.h" #include "wx/dcclient.h" @@ -257,11 +258,6 @@ private: IMPLEMENT_APP(LboxTestApp) -#ifdef __WXUNIVERSAL__ - WX_USE_THEME(win32); - WX_USE_THEME(gtk); -#endif // __WXUNIVERSAL__ - // ---------------------------------------------------------------------------- // event tables // ---------------------------------------------------------------------------- @@ -597,17 +593,17 @@ void LboxTestFrame::OnButtonDeleteSel(wxCommandEvent& WXUNUSED(event)) } } -void LboxTestFrame::OnButtonClear(wxCommandEvent& event) +void LboxTestFrame::OnButtonClear(wxCommandEvent& WXUNUSED(event)) { m_lbox->Clear(); } -void LboxTestFrame::OnButtonClearLog(wxCommandEvent& event) +void LboxTestFrame::OnButtonClearLog(wxCommandEvent& WXUNUSED(event)) { m_lboxLog->Clear(); } -void LboxTestFrame::OnButtonAdd(wxCommandEvent& event) +void LboxTestFrame::OnButtonAdd(wxCommandEvent& WXUNUSED(event)) { static size_t s_item = 0; @@ -630,7 +626,7 @@ void LboxTestFrame::OnButtonAddMany(wxCommandEvent& WXUNUSED(event)) } } -void LboxTestFrame::OnButtonAddSeveral(wxCommandEvent& event) +void LboxTestFrame::OnButtonAddSeveral(wxCommandEvent& WXUNUSED(event)) { wxArrayString items; items.Add(_T("First")); @@ -670,17 +666,18 @@ void LboxTestFrame::OnUpdateUIAddSeveral(wxUpdateUIEvent& event) void LboxTestFrame::OnListbox(wxCommandEvent& event) { int sel = event.GetInt(); - m_textDelete->SetValue(wxString::Format(_T("%ld"), sel)); + m_textDelete->SetValue(wxString::Format(_T("%d"), sel)); wxLogMessage(_T("Listbox item %d selected"), sel); } void LboxTestFrame::OnListboxDClick(wxCommandEvent& event) { - wxLogMessage(_T("Listbox item %d double clicked"), event.GetInt()); + int sel = event.GetInt(); + wxLogMessage(_T("Listbox item %d double clicked"), sel); } -void LboxTestFrame::OnCheckOrRadioBox(wxCommandEvent& event) +void LboxTestFrame::OnCheckOrRadioBox(wxCommandEvent& WXUNUSED(event)) { m_dirty = TRUE; }