X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6f735d3c225ac1d308dfaf3c57e1af5e0db10b6..06a848bc42600ba5a7fdb7cfe792772981afdbc8:/src/generic/calctrl.cpp diff --git a/src/generic/calctrl.cpp b/src/generic/calctrl.cpp index f21d61a1c0..f2b7d1d1f6 100644 --- a/src/generic/calctrl.cpp +++ b/src/generic/calctrl.cpp @@ -755,9 +755,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 +840,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); @@ -1233,13 +1232,13 @@ void wxCalendarCtrl::HighlightRange(wxPaintDC* pDC, const wxDateTime& fromdate, if ( ( (tw - fw) == 1 ) && ( td < fd ) ) { // special case: interval 7 days or less not in same week - // split in two seperate intervals + // split in two separate intervals wxDateTime tfd = fromdate + wxDateSpan::Days(7-fd); wxDateTime ftd = tfd + wxDateSpan::Day(); #if DEBUG_PAINT - wxLogDebug("Highlight: Seperate segments"); + wxLogDebug("Highlight: Separate segments"); #endif - // draw seperately + // draw separately HighlightRange(pDC, fromdate, tfd, pPen, pBrush); HighlightRange(pDC, ftd, todate, pPen, pBrush); } @@ -1783,4 +1782,3 @@ wxCalendarCtrl::GetClassDefaultAttributes(wxWindowVariant variant) } #endif // wxUSE_CALENDARCTRL -