eeschema: Don't free pointers held by undo stack
This commit is contained in:
parent
1181b9f9b4
commit
68451a2a9c
|
@ -162,7 +162,9 @@ void SCH_EDIT_FRAME::ConvertTextType( SCH_TEXT* aText, KICAD_T aType )
|
|||
if( selected )
|
||||
m_toolManager->RunAction( EE_ACTIONS::addItemToSel, true, newtext );
|
||||
|
||||
delete aText;
|
||||
// Otherwise, pointer is owned by the undo stack
|
||||
if( aText->IsNew() )
|
||||
delete aText;
|
||||
|
||||
OnModify();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue