Replace tabs with spaces

This commit is contained in:
Marcus A. Romer 2021-04-04 08:48:02 +02:00 committed by Ian McInerney
parent a24bc34b66
commit 1632707d9b
18 changed files with 36 additions and 35 deletions

View File

@ -34,7 +34,6 @@
<tab type="globals" visible="yes" title="" intro=""/>
</tab>
<tab type="examples" visible="yes" title="" intro=""/>
<tab type="user" url="https://dev-docs.kicad.org" title="KiCad Dev Docs"/>
</navindex>

View File

@ -288,7 +288,7 @@ private:
* G01X#Y# Linear (Straight Line) Route Mode YX is the ending point
* G02X#Y#... Circular CW Mode. Radius value (A#) or Center position (I#J#) follows
* G03X#Y#... Circular CCW Mode. Radius value (A#) or Center position (I#J#) follows
* G04 X# Variable Dwell
* G04X# Variable Dwell
* G05 Drill Mode
* G07 Override current tool feed or speed
* G32X#Y#A# Routed Circle Canned Cycle

View File

@ -391,6 +391,7 @@ private:
int yy = poly2gridY( py );
indices.insert( m_gridSize * yy + x );
if( x > 0 )
indices.insert( m_gridSize * yy + x - 1 );
@ -414,6 +415,7 @@ private:
int xx = poly2gridX( px );
indices.insert( m_gridSize * y + xx );
if( y > 0 )
indices.insert( m_gridSize * (y - 1) + xx );
}