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
a8eed789
Commit
a8eed789
authored
Jan 03, 2008
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more specctra dsn work
parent
d7a85428
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
511 additions
and
93 deletions
+511
-93
dsn.cpp
pcbnew/dsn.cpp
+4
-1
dsn.h
pcbnew/dsn.h
+1
-0
specctra.cpp
pcbnew/specctra.cpp
+506
-92
No files found.
pcbnew/dsn.cpp
View file @
a8eed789
...
...
@@ -339,6 +339,7 @@ const static KEYWORD tokens[] = {
TOKDEF
(
spacing
),
TOKDEF
(
spare
),
TOKDEF
(
spiral_via
),
TOKDEF
(
square
),
TOKDEF
(
stack_via
),
TOKDEF
(
stack_via_depth
),
TOKDEF
(
standard
),
...
...
@@ -553,7 +554,9 @@ const char* LEXER::GetTokenText( DSN_T aTok )
wxString
LEXER
::
GetTokenString
(
DSN_T
aTok
)
{
wxString
ret
=
CONV_FROM_UTF8
(
GetTokenText
(
aTok
)
);
wxString
ret
;
ret
<<
wxT
(
"'"
)
<<
CONV_FROM_UTF8
(
GetTokenText
(
aTok
)
)
<<
wxT
(
"'"
);
return
ret
;
}
...
...
pcbnew/dsn.h
View file @
a8eed789
...
...
@@ -339,6 +339,7 @@ enum DSN_T {
T_spacing
,
T_spare
,
T_spiral_via
,
T_square
,
T_stack_via
,
T_stack_via_depth
,
T_standard
,
...
...
pcbnew/specctra.cpp
View file @
a8eed789
This diff is collapsed.
Click to expand it.
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