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:
@@ -276,11 +276,11 @@ void wxSashWindow::OnMouseEvent(wxMouseEvent& event)
|
||||
|
||||
dragRect = wxRect(x, y, newWidth, newHeight);
|
||||
|
||||
wxSashEvent event(GetId(), edge);
|
||||
event.SetEventObject(this);
|
||||
event.SetDragStatus(status);
|
||||
event.SetDragRect(dragRect);
|
||||
GetEventHandler()->ProcessEvent(event);
|
||||
wxSashEvent eventSash(GetId(), edge);
|
||||
eventSash.SetEventObject(this);
|
||||
eventSash.SetDragStatus(status);
|
||||
eventSash.SetDragRect(dragRect);
|
||||
GetEventHandler()->ProcessEvent(eventSash);
|
||||
}
|
||||
else if ( event.LeftUp() )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user