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
f3a923d4
Commit
f3a923d4
authored
Apr 04, 2011
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
buglets
parent
5dc3cf98
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
sch_part.cpp
new/sch_part.cpp
+1
-1
sch_sweet_parser.cpp
new/sch_sweet_parser.cpp
+1
-2
No files found.
new/sch_part.cpp
View file @
f3a923d4
...
...
@@ -39,7 +39,7 @@
static
void
formatAt
(
OUTPUTFORMATTER
*
out
,
const
POINT
&
aPos
,
ANGLE
aAngle
,
int
indent
=
0
)
throw
(
IO_ERROR
)
{
out
->
Print
(
indent
,
aAngle
=
=
0.0
?
"(at %.6g %.6g %.6g)"
:
"(at %.6g %.6g)"
,
out
->
Print
(
indent
,
aAngle
!
=
0.0
?
"(at %.6g %.6g %.6g)"
:
"(at %.6g %.6g)"
,
InternalToLogical
(
aPos
.
x
),
InternalToLogical
(
aPos
.
y
),
double
(
aAngle
)
);
}
...
...
new/sch_sweet_parser.cpp
View file @
f3a923d4
...
...
@@ -27,7 +27,6 @@
#include <sch_lib_table.h>
#include <sch_lpid.h>
#include <macros.h> // FROM_UTF8()
using
namespace
SCH
;
using
namespace
PR
;
...
...
@@ -1197,7 +1196,7 @@ void SWEET_PARSER::parseText( GR_TEXT* me )
Duplicate
(
tok
);
sawText
=
true
;
me
->
text
=
FROM_
UTF8
(
CurText
()
);
me
->
text
=
wxString
::
From
UTF8
(
CurText
()
);
}
}
}
...
...
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