iterator methods fixes (patch 1164808)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32876 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -4713,7 +4713,7 @@ wxArrayInt wxGrid::CalcRowLabelsExposed( const wxRegion& reg )
|
||||
rowlabels.Add( row );
|
||||
}
|
||||
|
||||
iter++ ;
|
||||
++iter;
|
||||
}
|
||||
|
||||
return rowlabels;
|
||||
@@ -4764,7 +4764,7 @@ wxArrayInt wxGrid::CalcColLabelsExposed( const wxRegion& reg )
|
||||
colLabels.Add( col );
|
||||
}
|
||||
|
||||
iter++ ;
|
||||
++iter;
|
||||
}
|
||||
return colLabels;
|
||||
}
|
||||
@@ -4824,7 +4824,7 @@ wxGridCellCoordsArray wxGrid::CalcCellsExposed( const wxRegion& reg )
|
||||
}
|
||||
}
|
||||
|
||||
iter++;
|
||||
++iter;
|
||||
}
|
||||
|
||||
return cellsExposed;
|
||||
|
Reference in New Issue
Block a user