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
316d7b73
Commit
316d7b73
authored
Feb 28, 2008
by
lifekidyeaa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed a trivial bug in generating the erc file - changed Sheet->Path()
to PathHumanReadable().
parent
aeb903e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
erc.cpp
eeschema/erc.cpp
+2
-2
makefile.gtk
eeschema/makefile.gtk
+1
-1
No files found.
eeschema/erc.cpp
View file @
316d7b73
...
...
@@ -728,9 +728,9 @@ static bool WriteDiagnosticERC( const wxString& FullFileName )
for
(
Sheet
=
SheetList
.
GetFirst
();
Sheet
!=
NULL
;
Sheet
=
SheetList
.
GetNext
()
)
{
if
(
Sheet
->
Last
()
==
g_RootSheet
){
msg
.
Printf
(
_
(
"
\n
***** Sheet
Root
\n
"
)
);
msg
.
Printf
(
_
(
"
\n
***** Sheet
/ (Root)
\n
"
)
);
}
else
{
wxString
str
=
Sheet
->
Path
();
wxString
str
=
Sheet
->
Path
HumanReadable
();
msg
.
Printf
(
_
(
"
\n
***** Sheet %s
\n
"
),
str
.
GetData
()
);
}
...
...
eeschema/makefile.gtk
View file @
316d7b73
...
...
@@ -5,7 +5,7 @@ include ../libs.linux
# Additional compiler flags
CPPFLAGS
+=
CPPFLAGS
+=
TARGET
=
eeschema
...
...
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