Scoop up some more wxPoint instances

This commit is contained in:
Marek Roszko
2022-01-03 20:00:53 -05:00
parent 8e4a4306c7
commit ac715d2e51
29 changed files with 109 additions and 149 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ VECTOR2I ARRAY_GRID_OPTIONS::getGridCoords( int n ) const
if( m_reverseNumberingAlternate && ( y % 2 ) )
x = axisSize - x - 1;
wxPoint coords( x, y );
VECTOR2I coords( x, y );
return coords;
}