From: Francesco Montorsi Date: Thu, 3 Jun 2010 21:14:34 +0000 (+0000) Subject: no real change: just rename "near" into "onNearPart" (MSVC doesn't like 'near' as... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/18c0369bcdafbd32b826e4c1aa5717f0c6ebcc33 no real change: just rename "near" into "onNearPart" (MSVC doesn't like 'near' as variable name) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64480 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index 074490df82..e4ff36d0a1 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -3484,15 +3484,15 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event ) // if we're on the "near" (usually left but right in // RTL case) part of the column, the actual position we // should be placed in is actually the one before it - bool near; + bool onNearPart; const int middle = GetColLeft(colValid) + GetColWidth(colValid)/2; if ( GetLayoutDirection() == wxLayout_LeftToRight ) - near = x <= middle; + onNearPart = (x <= middle); else // wxLayout_RightToLeft - near = x > middle; + onNearPart = (x > middle); - if ( near ) + if ( onNearPart ) pos--; }