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
23aea616
Commit
23aea616
authored
Feb 24, 2012
by
Marco Mattila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix wxUniCharRef casting issue in eeschema single part per line BOM generation code (?).
parent
d57a1277
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
component_references_lister.cpp
eeschema/component_references_lister.cpp
+1
-1
No files found.
eeschema/component_references_lister.cpp
View file @
23aea616
...
...
@@ -124,7 +124,7 @@ static bool engStrToDouble( wxString aStr, double* aDouble )
wxString
multiplierString
=
valueRegEx
.
GetMatch
(
aStr
,
2
);
double
multiplier
;
switch
(
multiplierString
[
0
]
)
switch
(
(
wxChar
)
multiplierString
[
0
]
)
{
case
'p'
:
multiplier
=
1e-12
;
...
...
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