fixed variable shadowing icc warnings
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -577,7 +577,7 @@ void wxVListBox::OnKeyDown(wxKeyEvent& event)
|
||||
void wxVListBox::OnLeftDown(wxMouseEvent& event)
|
||||
{
|
||||
SetFocus();
|
||||
|
||||
|
||||
int item = HitTest(event.GetPosition());
|
||||
|
||||
if ( item != wxNOT_FOUND )
|
||||
@@ -599,9 +599,9 @@ 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());
|
||||
|
||||
Reference in New Issue
Block a user