Remove some unused variables.

This commit is contained in:
Chris Pavlina 2015-06-26 19:29:01 -04:00 committed by Wayne Stambaugh
parent 3af895e285
commit ada5274b28
2 changed files with 1 additions and 4 deletions

View File

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

View File

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