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

@ -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 );
}