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
bfe49371
Commit
bfe49371
authored
Feb 25, 2012
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pcbnew: fix compil issue.
parent
b536b1cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
kicad_plugin.cpp
pcbnew/kicad_plugin.cpp
+3
-3
No files found.
pcbnew/kicad_plugin.cpp
View file @
bfe49371
...
...
@@ -2167,7 +2167,7 @@ void KICAD_PLUGIN::loadZONE_CONTAINER()
BIU
clearance
=
biuParse
(
line
+
SZ
(
"ZClearance"
),
&
data
);
char
*
padoption
=
strtok
(
(
char
*
)
data
,
delims
);
// data: " I"
int
popt
;
ZoneConnection
popt
;
switch
(
*
padoption
)
{
case
'I'
:
popt
=
PAD_IN_ZONE
;
break
;
...
...
@@ -2181,7 +2181,7 @@ void KICAD_PLUGIN::loadZONE_CONTAINER()
}
zc
->
SetZoneClearance
(
clearance
);
zc
->
SetPad
Op
tion
(
popt
);
zc
->
SetPad
Connec
tion
(
popt
);
}
else
if
(
TESTLINE
(
"ZMinThickness"
)
)
...
...
@@ -3449,7 +3449,7 @@ void KICAD_PLUGIN::saveZONE_CONTAINER( const ZONE_CONTAINER* me ) const
// Save pad option and clearance
char
padoption
;
switch
(
me
->
GetPad
Op
tion
()
)
switch
(
me
->
GetPad
Connec
tion
()
)
{
default
:
case
PAD_IN_ZONE
:
padoption
=
'I'
;
break
;
...
...
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