We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d36bbf commit 1509ab7Copy full SHA for 1509ab7
src/main/widgets/specific/AudioEnvelope.cpp
@@ -214,8 +214,9 @@ namespace lsp
214
void AudioEnvelope::destroy()
215
{
216
nFlags |= FINALIZED;
217
- Widget::destroy();
218
do_destroy();
+
219
+ Widget::destroy();
220
}
221
222
void AudioEnvelope::do_destroy()
src/main/widgets/specific/AudioSample.cpp
@@ -1332,7 +1332,7 @@ namespace lsp
1332
1333
AudioEnvelope *envelope = widget_cast<AudioEnvelope>(child);
1334
if (envelope != NULL)
1335
- return vChannels.premove(envelope);
+ return vEnvelopes.premove(envelope);
1336
1337
return STATUS_BAD_TYPE;
1338
0 commit comments