Browse Source

Debugging.

(Separate so Sentry can tell us which one fired.)
pull/18/head
Jeff Young 5 months ago
parent
commit
9098750ba0
  1. 3
      eeschema/sch_commit.cpp

3
eeschema/sch_commit.cpp

@ -264,7 +264,8 @@ void SCH_COMMIT::pushSchEdit( const wxString& aMessage, int aCommitFlags )
SCH_ITEM* schItem = dynamic_cast<SCH_ITEM*>( ent.m_item );
SCH_SCREEN* screen = dynamic_cast<SCH_SCREEN*>( ent.m_screen );
wxCHECK2( schItem && screen, continue );
wxCHECK2( schItem, continue );
wxCHECK2( screen, continue );
if( !schematic )
schematic = schItem->Schematic();

Loading…
Cancel
Save