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
864426fb
Commit
864426fb
authored
Jun 06, 2011
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pcbnew: fix bug 792399.
dialog_about: add translator name.
parent
71d0f69b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
9 deletions
+7
-9
common_plotGERBER_functions.cpp
common/common_plotGERBER_functions.cpp
+4
-4
AboutDialog_main.cpp
common/dialog_about/AboutDialog_main.cpp
+1
-1
class_edge_mod.cpp
pcbnew/class_edge_mod.cpp
+1
-1
plot_rtn.cpp
pcbnew/plot_rtn.cpp
+1
-3
No files found.
common/common_plotGERBER_functions.cpp
View file @
864426fb
...
...
@@ -299,12 +299,12 @@ void GERBER_PLOTTER::circle( wxPoint aCentre, int aDiameter, FILL_T aFill,
}
/*
*
/*
* Function PlotPoly
* writes a filled or not filled polyline to output file
*
@param aCoord
= buffer of corners coordinates
*
@
param aFill = plot option (NO_FILL, FILLED_SHAPE, FILLED_WITH_BG_BODYCOLOR)
*
@
param aWidth = Width of the line to plot.
*
param aCornerList
= buffer of corners coordinates
* param aFill = plot option (NO_FILL, FILLED_SHAPE, FILLED_WITH_BG_BODYCOLOR)
* param aWidth = Width of the line to plot.
*/
void
GERBER_PLOTTER
::
PlotPoly
(
std
::
vector
<
wxPoint
>&
aCornerList
,
FILL_T
aFill
,
int
aWidth
)
{
...
...
common/dialog_about/AboutDialog_main.cpp
View file @
864426fb
...
...
@@ -252,7 +252,7 @@ static void InitKiCadAboutNew( AboutAppInfo& info )
info
.
AddTranslator
(
new
Contributor
(
wxT
(
"Kenta Yonekura"
),
wxT
(
"midpika@hotmail.com"
),
wxT
(
"Japanese (JA)"
),
new
wxBitmap
(
lang_jp_xpm
)
)
);
info
.
AddTranslator
(
new
Contributor
(
wxT
(
"Manolis Stefanis and Milonas Kostas"
),
info
.
AddTranslator
(
new
Contributor
(
wxT
(
"Manolis Stefanis
, Athanasios Vlastos
and Milonas Kostas"
),
wxT
(
"milonas.ko@gmail.com"
),
wxT
(
"Greek (el_GR)"
),
new
wxBitmap
(
lang_gr_xpm
)
)
);
info
.
AddTranslator
(
new
Contributor
(
wxT
(
"Massimo Cioce"
),
...
...
pcbnew/class_edge_mod.cpp
View file @
864426fb
pcbnew/plot_rtn.cpp
View file @
864426fb
...
...
@@ -444,7 +444,7 @@ void Plot_1_EdgeModule( PLOTTER* plotter, EDGE_MODULE* PtEdge,
for
(
unsigned
ii
=
0
;
ii
<
PtEdge
->
m_PolyPoints
.
size
();
ii
++
)
{
wxPoint
corner
=
PtEdge
->
m_PolyPoints
[
0
];
wxPoint
corner
=
PtEdge
->
m_PolyPoints
[
ii
];
if
(
Module
)
{
...
...
@@ -452,8 +452,6 @@ void Plot_1_EdgeModule( PLOTTER* plotter, EDGE_MODULE* PtEdge,
corner
+=
Module
->
m_Pos
;
}
corner
+=
PtEdge
->
m_Start0
;
cornerList
.
push_back
(
corner
);
}
...
...
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