fixed variable shadowing icc warnings
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -5021,7 +5021,7 @@ void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent& event )
|
||||
//
|
||||
else if (event.LeftDClick() )
|
||||
{
|
||||
int row = YToEdgeOfRow(y);
|
||||
row = YToEdgeOfRow(y);
|
||||
if ( row < 0 )
|
||||
{
|
||||
row = YToRow(y);
|
||||
@@ -5245,7 +5245,7 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event )
|
||||
//
|
||||
if ( event.LeftDClick() )
|
||||
{
|
||||
int col = XToEdgeOfCol(x);
|
||||
col = XToEdgeOfCol(x);
|
||||
if ( col < 0 )
|
||||
{
|
||||
col = XToCol(x);
|
||||
|
Reference in New Issue
Block a user