avoid double-free of MIDI sys ex and patch change canvas items

This commit is contained in:
Paul Davis
2025-01-27 12:42:13 -07:00
parent ee4419003c
commit 0ddc050555
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ PatchChange::PatchChange (MidiView& region,
PatchChange::~PatchChange ()
{
delete _flag;
/* _flag is deleted by the canvas container/parent it is placed in */
}
void

View File

@@ -55,7 +55,7 @@ SysEx::SysEx (
SysEx::~SysEx()
{
delete _flag;
/* _flag is deleted by the canvas container/parent it is placed in */
}
bool