Make sure EESCHEMA definition gets passed into common.cpp.
Also includes a fix to seed timestamps that got incorrectly written out as '00000000' because of the above. Fixes https://gitlab.com/kicad/code/kicad/issues/3977
This commit is contained in:
parent
85c2e0d23a
commit
21469efa63
|
@ -68,7 +68,7 @@ KIID::KIID() :
|
||||||
|
|
||||||
oldTimeStamp = newTimeStamp;
|
oldTimeStamp = newTimeStamp;
|
||||||
|
|
||||||
*this = UUID( wxString::Format( "%8.8X", newTimeStamp ) );
|
*this = KIID( wxString::Format( "%8.8X", newTimeStamp ) );
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -247,6 +247,7 @@ set( EESCHEMA_SRCS
|
||||||
set( EESCHEMA_COMMON_SRCS
|
set( EESCHEMA_COMMON_SRCS
|
||||||
${CMAKE_SOURCE_DIR}/common/dialogs/dialog_page_settings.cpp
|
${CMAKE_SOURCE_DIR}/common/dialogs/dialog_page_settings.cpp
|
||||||
${CMAKE_SOURCE_DIR}/common/dialogs/panel_display_options.cpp
|
${CMAKE_SOURCE_DIR}/common/dialogs/panel_display_options.cpp
|
||||||
|
${CMAKE_SOURCE_DIR}/common/common.cpp
|
||||||
${CMAKE_SOURCE_DIR}/common/base_screen.cpp
|
${CMAKE_SOURCE_DIR}/common/base_screen.cpp
|
||||||
${CMAKE_SOURCE_DIR}/common/base_units.cpp
|
${CMAKE_SOURCE_DIR}/common/base_units.cpp
|
||||||
${CMAKE_SOURCE_DIR}/common/eda_text.cpp
|
${CMAKE_SOURCE_DIR}/common/eda_text.cpp
|
||||||
|
|
|
@ -989,6 +989,8 @@ SCH_SHEET* SCH_LEGACY_PLUGIN::loadSheet( LINE_READER& aReader )
|
||||||
{
|
{
|
||||||
wxString text;
|
wxString text;
|
||||||
parseUnquotedString( text, aReader, line );
|
parseUnquotedString( text, aReader, line );
|
||||||
|
|
||||||
|
if( text != "00000000" )
|
||||||
const_cast<KIID&>( sheet->m_Uuid ) = KIID( text );
|
const_cast<KIID&>( sheet->m_Uuid ) = KIID( text );
|
||||||
}
|
}
|
||||||
else if( *line == 'F' ) // Sheet field.
|
else if( *line == 'F' ) // Sheet field.
|
||||||
|
@ -1569,6 +1571,8 @@ SCH_COMPONENT* SCH_LEGACY_PLUGIN::loadComponent( LINE_READER& aReader )
|
||||||
|
|
||||||
wxString text;
|
wxString text;
|
||||||
parseUnquotedString( text, aReader, line, &line );
|
parseUnquotedString( text, aReader, line, &line );
|
||||||
|
|
||||||
|
if( text != "00000000" )
|
||||||
const_cast<KIID&>( component->m_Uuid ) = KIID( text );
|
const_cast<KIID&>( component->m_Uuid ) = KIID( text );
|
||||||
}
|
}
|
||||||
else if( strCompare( "P", line, &line ) )
|
else if( strCompare( "P", line, &line ) )
|
||||||
|
|
Loading…
Reference in New Issue