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
f01653fc
Commit
f01653fc
authored
Nov 20, 2010
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix gcc 4.5 warnings compil.
parent
f930894d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
11 deletions
+9
-11
eda_doc.cpp
common/eda_doc.cpp
+2
-2
class_libentry.cpp
eeschema/class_libentry.cpp
+2
-2
sch_field.cpp
eeschema/sch_field.cpp
+1
-2
sch_sheet.cpp
eeschema/sch_sheet.cpp
+2
-2
draw_gerber_screen.cpp
gerbview/draw_gerber_screen.cpp
+1
-1
class_pad_draw_functions.cpp
pcbnew/class_pad_draw_functions.cpp
+1
-2
No files found.
common/eda_doc.cpp
View file @
f01653fc
...
...
@@ -54,14 +54,14 @@ static const wxFileTypeInfo EDAfallbacks[] =
wxT
(
"wxhtml %s"
),
wxT
(
"html document (from Kicad)"
),
wxT
(
"htm"
),
wxT
(
"html"
),
NULL
),
wxT
(
"html"
),
wxNullPtr
),
wxFileTypeInfo
(
wxT
(
"application/sch"
),
wxT
(
"eeschema %s"
),
wxT
(
"eeschema -p %s"
),
wxT
(
"sch document (from Kicad)"
),
wxT
(
"sch"
),
wxT
(
"SCH"
),
NULL
),
wxT
(
"SCH"
),
wxNullPtr
),
// must terminate the table with this!
wxFileTypeInfo
()
...
...
eeschema/class_libentry.cpp
View file @
f01653fc
...
...
@@ -318,12 +318,12 @@ void LIB_COMPONENT::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDc, const wxPoint& aO
if
(
drawItem
.
Type
()
==
COMPONENT_FIELD_DRAW_TYPE
)
{
drawItem
.
Draw
(
aPanel
,
aDc
,
aOffset
,
aColor
,
aDrawMode
,
NULL
,
aTransform
);
drawItem
.
Draw
(
aPanel
,
aDc
,
aOffset
,
aColor
,
aDrawMode
,
(
void
*
)
NULL
,
aTransform
);
}
// Now, draw only the background for items with
// m_Fill == FILLED_WITH_BG_BODYCOLOR:
drawItem
.
Draw
(
aPanel
,
aDc
,
aOffset
,
aColor
,
aDrawMode
,
false
,
aTransform
);
drawItem
.
Draw
(
aPanel
,
aDc
,
aOffset
,
aColor
,
aDrawMode
,
(
void
*
)
false
,
aTransform
);
}
}
...
...
eeschema/sch_field.cpp
View file @
f01653fc
...
...
@@ -151,8 +151,7 @@ void SCH_FIELD::Draw( WinEDA_DrawPanel* panel, wxDC* DC,
DrawGraphicText
(
panel
,
DC
,
textpos
,
color
,
fulltext
,
orient
,
m_Size
,
hjustify
,
vjustify
,
LineWidth
,
m_Italic
,
m_Bold
,
false
);
LineWidth
,
m_Italic
,
m_Bold
);
}
/* Enable this to draw the bounding box around the text field to validate
...
...
eeschema/sch_sheet.cpp
View file @
f01653fc
...
...
@@ -584,7 +584,7 @@ void SCH_SHEET::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDC,
(
EDA_Colors
)
txtcolor
,
Text
,
name_orientation
,
wxSize
(
m_SheetNameSize
,
m_SheetNameSize
),
GR_TEXT_HJUSTIFY_LEFT
,
GR_TEXT_VJUSTIFY_BOTTOM
,
LineWidth
,
false
,
false
,
false
);
false
,
false
);
/* Draw text : FileName */
if
(
aColor
>=
0
)
...
...
@@ -596,7 +596,7 @@ void SCH_SHEET::Draw( WinEDA_DrawPanel* aPanel, wxDC* aDC,
(
EDA_Colors
)
txtcolor
,
Text
,
name_orientation
,
wxSize
(
m_FileNameSize
,
m_FileNameSize
),
GR_TEXT_HJUSTIFY_LEFT
,
GR_TEXT_VJUSTIFY_TOP
,
LineWidth
,
false
,
false
,
false
);
false
,
false
);
/* Draw text : SheetLabel */
...
...
gerbview/draw_gerber_screen.cpp
View file @
f01653fc
...
...
@@ -205,7 +205,7 @@ void Show_Items_DCode_Value( WinEDA_DrawPanel* aPanel, wxDC* aDC, BOARD* aPcb, i
pos
,
(
EDA_Colors
)
color
,
Line
,
orient
,
wxSize
(
width
,
width
),
GR_TEXT_HJUSTIFY_CENTER
,
GR_TEXT_VJUSTIFY_CENTER
,
0
,
false
,
false
,
false
);
0
,
false
,
false
);
}
}
...
...
pcbnew/class_pad_draw_functions.cpp
View file @
f01653fc
...
...
@@ -590,8 +590,7 @@ void D_PAD::DrawShape( EDA_Rect* aClipBox, wxDC* aDC, PAD_DRAWINFO& aDrawInfo )
tsize
=
(
int
)
(
tsize
*
0.8
);
DrawGraphicText
(
aDrawInfo
.
m_DrawPanel
,
aDC
,
tpos
,
WHITE
,
buffer
,
t_angle
,
wxSize
(
tsize
,
tsize
),
GR_TEXT_HJUSTIFY_CENTER
,
GR_TEXT_VJUSTIFY_CENTER
,
tsize
/
7
,
false
,
false
,
false
);
GR_TEXT_VJUSTIFY_CENTER
,
tsize
/
7
,
false
,
false
);
}
}
...
...
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