From b109136c5c39fbe1f468ba844456505b74e47f2c Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Sat, 15 Oct 2022 14:50:06 -0400 Subject: [PATCH] Fix complex hierarchy instance data when loading legacy schematic. --- eeschema/sch_plugins/legacy/sch_legacy_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_plugins/legacy/sch_legacy_plugin.cpp b/eeschema/sch_plugins/legacy/sch_legacy_plugin.cpp index a95c5bc826..1ce2c859e3 100644 --- a/eeschema/sch_plugins/legacy/sch_legacy_plugin.cpp +++ b/eeschema/sch_plugins/legacy/sch_legacy_plugin.cpp @@ -1200,7 +1200,7 @@ SCH_SYMBOL* SCH_LEGACY_PLUGIN::loadSymbol( LINE_READER& aReader ) // UUID so we need to prefix it to the symbol path so the symbol instance paths // get saved with the root schematic UUID. if( !m_appending ) - path.insert( path.begin(), m_rootSheet->GetScreen()->m_Uuid ); + path.insert( path.begin(), m_rootSheet->GetScreen()->GetUuid() ); strCompare = "Ref="; len = strlen( strCompare );