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
This commit is contained in:
Francesco Montorsi
2010-06-03 21:14:34 +00:00
parent ce5f620a12
commit 18c0369bcd

View File

@@ -3484,15 +3484,15 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event )
// if we're on the "near" (usually left but right in // if we're on the "near" (usually left but right in
// RTL case) part of the column, the actual position we // RTL case) part of the column, the actual position we
// should be placed in is actually the one before it // should be placed in is actually the one before it
bool near; bool onNearPart;
const int middle = GetColLeft(colValid) + const int middle = GetColLeft(colValid) +
GetColWidth(colValid)/2; GetColWidth(colValid)/2;
if ( GetLayoutDirection() == wxLayout_LeftToRight ) if ( GetLayoutDirection() == wxLayout_LeftToRight )
near = x <= middle; onNearPart = (x <= middle);
else // wxLayout_RightToLeft else // wxLayout_RightToLeft
near = x > middle; onNearPart = (x > middle);
if ( near ) if ( onNearPart )
pos--; pos--;
} }