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
46b57190
Commit
46b57190
authored
Sep 29, 2010
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compil issues in debug mode
parent
d696ee8c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
class_gerber_draw_item.h
gerbview/class_gerber_draw_item.h
+11
-0
rs274d.cpp
gerbview/rs274d.cpp
+1
-1
No files found.
gerbview/class_gerber_draw_item.h
View file @
46b57190
...
...
@@ -179,6 +179,17 @@ public:
bool
Save
(
FILE
*
aFile
)
const
;
#if defined(DEBUG)
/**
* Function Show
* is used to output the object tree, currently for debugging only.
* @param nestLevel An aid to prettier tree indenting, and is the level
* of nesting of this object within the overall tree.
* @param os The ostream& to output to.
*/
virtual
void
Show
(
int
nestLevel
,
std
::
ostream
&
os
);
#endif
};
#endif
/* CLASS_GERBER_DRAW_ITEM_H */
gerbview/rs274d.cpp
View file @
46b57190
...
...
@@ -1006,7 +1006,7 @@ bool GERBER::Execute_DCODE_Command( WinEDA_GerberFrame* frame,
{
if
(
m_LayerNegative
^
m_ImageNegative
)
gbritem
->
m_Flags
|=
DRAW_ERASED
;
D
(
printf
(
"
\n
m_Flags=0x%08X
\n
"
,
edge_poly
->
m_Flags
);
)
D
(
printf
(
"
\n
m_Flags=0x%08X
\n
"
,
gbritem
->
m_Flags
);
)
}
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