fix link error with multiply used edaapl.cpp

This commit is contained in:
Dick Hollenbeck 2013-11-15 09:12:07 -06:00
parent 593aa2dc12
commit 53e8c9b2c2
3 changed files with 4 additions and 2 deletions

View File

@ -1162,7 +1162,7 @@ bool EDA_APP::LockFile( const wxString& fileName )
bool EDA_APP::SetFootprintLibTablePath()
{
wxString path;
wxString kisysmod = FP_LIB_TABLE::GlobalPathEnvVariableName();
wxString kisysmod( wxT( KISYSMOD ) );
// Set the KISYSMOD environment variable for the current process if it is not already
// defined in the user's environment. This is required to expand the global footprint

View File

@ -736,7 +736,7 @@ const wxString FP_LIB_TABLE::ProjectPathEnvVariableName()
const wxString FP_LIB_TABLE::GlobalPathEnvVariableName()
{
return wxT( "KISYSMOD" );
return wxT( KISYSMOD );
}

View File

@ -34,6 +34,8 @@
#include <io_mgr.h>
#define KISYSMOD "KISYSMOD"
class wxFileName;
class OUTPUTFORMATTER;
class MODULE;