Fix spice simulator build error due to EDA_TEXT changes.

This commit is contained in:
Wayne Stambaugh 2017-01-25 09:25:05 -05:00
parent 0c459ced97
commit 8e7fe9dab2
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
* This program source code file is part of KiCad, a free EDA CAD application. * This program source code file is part of KiCad, a free EDA CAD application.
* *
* Copyright (C) 2011-2013 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com> * Copyright (C) 2011-2013 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2007-2016 KiCad Developers, see change_log.txt for contributors. * Copyright (C) 2007-2017 KiCad Developers, see change_log.txt for contributors.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
@ -325,7 +325,7 @@ void DIALOG_EDIT_LIBENTRY_FIELDS_IN_LIB::EditSpiceModel( wxCommandEvent& event )
for( unsigned ii = 0; ii < m_FieldsBuf.size(); ++ii ) for( unsigned ii = 0; ii < m_FieldsBuf.size(); ++ii )
{ {
LIB_FIELD& libfield = m_FieldsBuf[ii]; LIB_FIELD& libfield = m_FieldsBuf[ii];
SCH_FIELD schfield( libfield.GetTextPosition(), libfield.GetId(), SCH_FIELD schfield( libfield.GetTextPos(), libfield.GetId(),
&component, libfield.GetName() ); &component, libfield.GetName() );
schfield.ImportValues( m_FieldsBuf[ii] ); schfield.ImportValues( m_FieldsBuf[ii] );
schfield.SetText( m_FieldsBuf[ii].GetText() ); schfield.SetText( m_FieldsBuf[ii].GetText() );