X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3103e8a97e834e9793f0eb149aa82a99fd64ef9a..a068160f9f732794d7d373d3adb4979c97c2d663:/src/generic/calctrl.cpp diff --git a/src/generic/calctrl.cpp b/src/generic/calctrl.cpp index dc5004f9d6..7adb122716 100644 --- a/src/generic/calctrl.cpp +++ b/src/generic/calctrl.cpp @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma implementation "calctrl.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -755,9 +751,9 @@ wxSize wxCalendarCtrl::DoGetBestSize() const height += m_spinYear->GetBestSize().y; - wxCoord w2= m_comboMonth->GetBestSize().x + HORZ_MARGIN + GetCharWidth()*6; - if (width < w2) - width=w2; + wxCoord w2 = m_comboMonth->GetBestSize().x + HORZ_MARGIN + GetCharWidth()*6; + if (width < w2) + width = w2; } if ( !HasFlag(wxBORDER_NONE) ) @@ -840,12 +836,11 @@ void wxCalendarCtrl::RecalcGeometry() wxClientDC dc(this); dc.SetFont(GetFont()); - int day = 10; // determine the column width (weekday names are not necessarily wider // than the numbers (in some languages), so let's not assume that they are) m_widthCol = 0; - for ( day = 10; day <= 31; day++) + for ( int day = 10; day <= 31; day++) { wxCoord width; dc.GetTextExtent(wxString::Format(wxT("%d"), day), &width, &m_heightRow); @@ -1419,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; @@ -1783,4 +1778,3 @@ wxCalendarCtrl::GetClassDefaultAttributes(wxWindowVariant variant) } #endif // wxUSE_CALENDARCTRL -