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
dac20005
Commit
dac20005
authored
Jan 05, 2012
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix unreleased bug pertaining to "Sheet" line in a *.brd file
parent
dd091fc6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ioascii.cpp
pcbnew/ioascii.cpp
+2
-2
kicad_plugin.cpp
pcbnew/kicad_plugin.cpp
+2
-2
No files found.
pcbnew/ioascii.cpp
View file @
dac20005
...
...
@@ -896,8 +896,8 @@ static bool ReadSheetDescr( BOARD* aBoard, BASE_SCREEN* screen, LINE_READER* aRe
// only parse the width and height if page size is "User"
if
(
wname
==
wxT
(
"User"
)
)
{
char
*
width
=
strtok
(
line
,
delims
);
char
*
height
=
strtok
(
line
,
delims
);
char
*
width
=
strtok
(
NULL
,
delims
);
char
*
height
=
strtok
(
NULL
,
delims
);
if
(
width
&&
height
)
{
...
...
pcbnew/kicad_plugin.cpp
View file @
dac20005
...
...
@@ -466,8 +466,8 @@ void KICAD_PLUGIN::loadSHEET()
// only parse the width and height if page size is "User"
if
(
wname
==
wxT
(
"User"
)
)
{
char
*
width
=
strtok
(
line
,
delims
);
char
*
height
=
strtok
(
line
,
delims
);
char
*
width
=
strtok
(
NULL
,
delims
);
char
*
height
=
strtok
(
NULL
,
delims
);
if
(
width
&&
height
)
{
...
...
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