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
bf26962f
Commit
bf26962f
authored
Oct 04, 2013
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CTL_OMIT_PATH patch
parent
d77f95af
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
kicad_plugin.cpp
pcbnew/kicad_plugin.cpp
+1
-1
kicad_plugin.h
pcbnew/kicad_plugin.h
+2
-1
No files found.
pcbnew/kicad_plugin.cpp
View file @
bf26962f
...
...
@@ -971,7 +971,7 @@ void PCB_IO::format( MODULE* aModule, int aNestLevel ) const
m_out
->
Print
(
aNestLevel
+
1
,
"(tags %s)
\n
"
,
m_out
->
Quotew
(
aModule
->
GetKeywords
()
).
c_str
()
);
if
(
!
aModule
->
GetPath
().
IsEmpty
()
)
if
(
!
(
m_ctl
&
CTL_OMIT_PATH
)
&&
!!
aModule
->
GetPath
()
)
m_out
->
Print
(
aNestLevel
+
1
,
"(path %s)
\n
"
,
m_out
->
Quotew
(
aModule
->
GetPath
()
).
c_str
()
);
...
...
pcbnew/kicad_plugin.h
View file @
bf26962f
...
...
@@ -42,6 +42,7 @@ class PCB_PARSER;
#define CTL_OMIT_NETS (1 << 1)
#define CTL_OMIT_TSTAMPS (1 << 2)
#define CTL_OMIT_INITIAL_COMMENTS (1 << 3) ///< omit MODULE initial comments
#define CTL_OMIT_PATH (1 << 4)
// common combinations of the above:
...
...
@@ -49,7 +50,7 @@ class PCB_PARSER;
#define CTL_FOR_CLIPBOARD (CTL_STD_LAYER_NAMES|CTL_OMIT_NETS)
/// Format output for a footprint library instead of clipboard or BOARD
#define CTL_FOR_LIBRARY (CTL_STD_LAYER_NAMES|CTL_OMIT_NETS|CTL_OMIT_TSTAMPS)
#define CTL_FOR_LIBRARY (CTL_STD_LAYER_NAMES|CTL_OMIT_NETS|CTL_OMIT_TSTAMPS
|CTL_OMIT_PATH
)
/// The zero arg constructor when PCB_IO is used for PLUGIN::Load() and PLUGIN::Save()ing
/// a BOARD file underneath IO_MGR.
...
...
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