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
1760a28e
Commit
1760a28e
authored
Jul 28, 2013
by
Ben Harris
Committed by
Dick Hollenbeck
Jul 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix FP_CACHE::Load()
parent
17b1c04f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
19 deletions
+20
-19
kicad_plugin.cpp
pcbnew/kicad_plugin.cpp
+20
-19
No files found.
pcbnew/kicad_plugin.cpp
View file @
1760a28e
...
...
@@ -181,8 +181,7 @@ void FP_CACHE::Save()
// Allow file output stream to go out of scope to close the file stream before
// renaming the file.
{
wxLogTrace
(
traceFootprintLibrary
,
wxT
(
"Creating temporary library file %s"
),
GetChars
(
tempFileName
)
);
// wxLogTrace( traceFootprintLibrary, wxT( "Creating temporary library file %s" ), GetChars( tempFileName ) );
FILE_OUTPUTFORMATTER
formatter
(
tempFileName
);
...
...
@@ -218,13 +217,14 @@ void FP_CACHE::Load()
wxString
fpFileName
;
wxString
wildcard
=
wxT
(
"*."
)
+
KiCadFootprintFileExtension
;
if
(
!
dir
.
GetFirst
(
&
fpFileName
,
wildcard
,
wxDIR_FILES
)
)
return
;
if
(
dir
.
GetFirst
(
&
fpFileName
,
wildcard
,
wxDIR_FILES
)
)
{
do
{
// reader now owns fp, will close on exception or return
FILE_LINE_READER
reader
(
fpFileName
);
// prepend the libpath into fullPath
wxFileName
fullPath
(
m_lib_path
.
GetPath
(),
fpFileName
);
FILE_LINE_READER
reader
(
fullPath
.
GetFullPath
()
);
m_owner
->
m_parser
->
SetLineReader
(
&
reader
);
...
...
@@ -238,6 +238,7 @@ void FP_CACHE::Load()
// cache snapshot was made, so that in a networked environment we will
// reload the cache as needed.
m_mod_time
=
GetLibModificationTime
();
}
}
...
...
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