Remove some unused variables.
This commit is contained in:
parent
3af895e285
commit
ada5274b28
|
@ -373,11 +373,9 @@ bool SHAPE_RECT::Collide( const SEG& aSeg, int aClearance ) const
|
|||
{
|
||||
SEG s( vts[i], vts[i + 1], i );
|
||||
|
||||
int64_t dist = s.Distance( aSeg );
|
||||
|
||||
if( s.Distance( aSeg ) < aClearance )
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
const wxChar PGM_BASE::workingDirKey[] = wxT( "WorkingDir" ); // public
|
||||
|
||||
static const wxChar languageCfgKey[] = wxT( "LanguageID" );
|
||||
static const wxChar kicadFpLibPath[] = wxT( "KicadFootprintLibraryPath" );
|
||||
static const wxChar pathEnvVariables[] = wxT( "EnvironmentVariables" );
|
||||
static const wxChar showEnvVarWarningDialog[] = wxT( "ShowEnvVarWarningDialog" );
|
||||
static const wxChar traceEnvVars[] = wxT( "KIENVVARS" );
|
||||
|
|
Loading…
Reference in New Issue