X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dc5960727c6161aaf98e512e396ae1a021326de8..f15fa3a93ffd477077d1255ebd9d6335758021c4:/src/generic/vlbox.cpp diff --git a/src/generic/vlbox.cpp b/src/generic/vlbox.cpp index 0a08835aa4..9bb7cde2d0 100644 --- a/src/generic/vlbox.cpp +++ b/src/generic/vlbox.cpp @@ -24,6 +24,8 @@ #pragma hdrstop #endif +#if wxUSE_LISTBOX + #ifndef WX_PRECOMP #include "wx/settings.h" #include "wx/dcclient.h" @@ -243,7 +245,7 @@ void wxVListBox::SendSelectedEvent() wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, GetId()); event.SetEventObject(this); - event.m_commandInt = m_current; + event.SetInt(m_current); (void)GetEventHandler()->ProcessEvent(event); } @@ -574,6 +576,8 @@ void wxVListBox::OnKeyDown(wxKeyEvent& event) void wxVListBox::OnLeftDown(wxMouseEvent& event) { + SetFocus(); + int item = HitTest(event.GetPosition()); if ( item != wxNOT_FOUND ) @@ -595,14 +599,14 @@ void wxVListBox::OnLeftDown(wxMouseEvent& event) } } -void wxVListBox::OnLeftDClick(wxMouseEvent& event) +void wxVListBox::OnLeftDClick(wxMouseEvent& eventMouse) { - int item = HitTest(event.GetPosition()); + int item = HitTest(eventMouse.GetPosition()); if ( item != wxNOT_FOUND ) { wxCommandEvent event(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, GetId()); event.SetEventObject(this); - event.m_commandInt = item; + event.SetInt(item); (void)GetEventHandler()->ProcessEvent(event); } @@ -621,3 +625,5 @@ wxVListBox::GetClassDefaultAttributes(wxWindowVariant variant) { return wxListBox::GetClassDefaultAttributes(variant); } + +#endif