← Back to team overview

kicad-developers team mailing list archive

Re: Issue with Eeschema on OS X

 

--- In kicad-devel@xxxxxxxxxxxxxxx, "dioiioib" <dioiioib@...> wrote:
>
> I have encountered a crash while using the Parts list generation in eeschema. If you attempt to export and over write a list of parts you all ready generated, eeschema will crash.
> 
Seems seems is the static declaration creating this issue, probably due optimization reason.
Dick is the bug reproducible also under Linux ?

--
Marco

Index: build_BOM.cpp
===================================================================
--- build_BOM.cpp	(revision 1837)
+++ build_BOM.cpp	(working copy)
@@ -515,7 +515,7 @@
/*******************************************************************************************/
{
// @todo make this variable length
- static const wxCheckBox* FieldListCtrl[] = {
+ const wxCheckBox* FieldListCtrl[] = {
m_AddField1,
m_AddField2,
m_AddField3,







Follow ups

References