Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
53e8c9b2
Commit
53e8c9b2
authored
Nov 15, 2013
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix link error with multiply used edaapl.cpp
parent
593aa2dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
edaappl.cpp
common/edaappl.cpp
+1
-1
fp_lib_table.cpp
common/fp_lib_table.cpp
+1
-1
fp_lib_table.h
include/fp_lib_table.h
+2
-0
No files found.
common/edaappl.cpp
View file @
53e8c9b2
...
...
@@ -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
...
...
common/fp_lib_table.cpp
View file @
53e8c9b2
...
...
@@ -736,7 +736,7 @@ const wxString FP_LIB_TABLE::ProjectPathEnvVariableName()
const
wxString
FP_LIB_TABLE
::
GlobalPathEnvVariableName
()
{
return
wxT
(
"KISYSMOD"
);
return
wxT
(
KISYSMOD
);
}
...
...
include/fp_lib_table.h
View file @
53e8c9b2
...
...
@@ -34,6 +34,8 @@
#include <io_mgr.h>
#define KISYSMOD "KISYSMOD"
class
wxFileName
;
class
OUTPUTFORMATTER
;
class
MODULE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment