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:
@@ -1414,9 +1414,9 @@ void wxCalendarCtrl::OnClick(wxMouseEvent& event)
|
||||
|
||||
case wxCAL_HITTEST_HEADER:
|
||||
{
|
||||
wxCalendarEvent event(this, wxEVT_CALENDAR_WEEKDAY_CLICKED);
|
||||
event.m_wday = wday;
|
||||
(void)GetEventHandler()->ProcessEvent(event);
|
||||
wxCalendarEvent eventWd(this, wxEVT_CALENDAR_WEEKDAY_CLICKED);
|
||||
eventWd.m_wday = wday;
|
||||
(void)GetEventHandler()->ProcessEvent(eventWd);
|
||||
}
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user