From b2231d4d0bc3374edd8a930bf2fabdfadcab4410 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Thu, 19 Feb 2009 17:45:34 +0000 Subject: [PATCH] add braces around if-body git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/calctrlg.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/generic/calctrlg.cpp b/src/generic/calctrlg.cpp index 21d116ccb1..effd171d21 100644 --- a/src/generic/calctrlg.cpp +++ b/src/generic/calctrlg.cpp @@ -1564,6 +1564,7 @@ wxCalendarHitTestResult wxGenericCalendarCtrl::HitTest(const wxPoint& pos, } if ( pos.x - x0 < 0 ) + { if ( pos.x >= 0 && pos.y > m_rowOffset + m_heightRow && pos.y <= m_rowOffset + m_heightRow * 7 ) { if ( date ) @@ -1577,6 +1578,7 @@ wxCalendarHitTestResult wxGenericCalendarCtrl::HitTest(const wxPoint& pos, } else // early exit -> the rest of the function checks for clicks on days return wxCAL_HITTEST_NOWHERE; + } // header: week days int wday = (pos.x - x0) / m_widthCol;