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
6fa4f1e6
Commit
6fa4f1e6
authored
May 13, 2013
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove non-UTF8 encoded characters from source tree & format fix
parent
f78497bf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
eeschema.cpp
eeschema/eeschema.cpp
+4
-4
libeditframe.h
eeschema/libeditframe.h
+1
-1
class_GERBER.cpp
gerbview/class_GERBER.cpp
+2
-2
dcode.cpp
gerbview/dcode.cpp
+1
-1
units_scales.h
pcb_calculator/units_scales.h
+1
-1
No files found.
eeschema/eeschema.cpp
View file @
6fa4f1e6
...
...
@@ -111,10 +111,10 @@ bool EDA_APP::OnInit()
}
if
(
m_Checker
&&
m_Checker
->
IsAnotherRunning
()
)
{
if
(
!
IsOK
(
NULL
,
_
(
"Eeschema is already running, Continue?"
)
)
)
return
false
;
}
{
if
(
!
IsOK
(
NULL
,
_
(
"Eeschema is already running, Continue?"
)
)
)
return
false
;
}
// Give a default colour for all layers
// (actual color will beinitialized by config)
...
...
eeschema/libeditframe.h
View file @
6fa4f1e6
...
...
@@ -268,7 +268,7 @@ public:
* accordint to the current selected unit and De Morgan selection
* although it is stored without ? and part id.
* @param aDC = the current device context
* @param aOffset = a draw offset. usually
à
,0 to draw on the screen, but
* @param aOffset = a draw offset. usually
0
,0 to draw on the screen, but
* can be set to page size / 2 to draw or print in SVG format.
*/
void
RedrawComponent
(
wxDC
*
aDC
,
wxPoint
aOffset
);
...
...
gerbview/class_GERBER.cpp
View file @
6fa4f1e6
...
...
@@ -50,8 +50,8 @@ extern int scaletoIU( double aCoord, bool isMetric ); // defined it rs274d
*
* D_CODES:
* D01 ... D9 = action codes:
* D01 = activating light (lower pen) when di
pl
acement
* D02 = light extinction (lift pen) when di
pl
acement
* D01 = activating light (lower pen) when di placement
* D02 = light extinction (lift pen) when di placement
* D03 Flash
* D09 = VAPE Flash
* D10 ... = Indentification Tool (Opening)
...
...
gerbview/dcode.cpp
View file @
6fa4f1e6
...
...
@@ -321,7 +321,7 @@ void GERBVIEW_FRAME::CopyDCodesSizeToItems()
gerb_item
->
m_Shape
=
GBR_SPOT_RECT
;
break
;
case
APT_POLYGON
:
/* spot regular polyg 3 to 1 edges */
case
APT_POLYGON
:
gerb_item
->
m_Shape
=
GBR_SPOT_POLY
;
break
;
...
...
pcb_calculator/units_scales.h
View file @
6fa4f1e6
...
...
@@ -10,7 +10,7 @@
#define UNIT_MM 1e-3 // mm to meter
#define UNIT_CM 1e-2 // cm to meter
#define UNIT_MICRON 1e-6 //
µ
m to meter
#define UNIT_MICRON 1e-6 //
u
m to meter
#define UNIT_INCH (1e-2*2.54) // inch to meter
#define UNIT_MIL (1e-5*2.54) // mil (or thou) to meter
...
...
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