1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Re-saved all projects

This commit is contained in:
Tom Poole 2019-06-06 14:54:53 +01:00
parent a4bd6cbc66
commit 645a538001
2 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ public:
// We need to clear the output buffers before returning, in case they're full of junk..
for (int j = 0; j < numOutputChannels; ++j)
if (float* outputChannel = outputChannelData[j])
zeromem (outputChannel, sizeof (float) * (size_t) numberOfSamples);
zeromem (outputChannel, (size_t) numberOfSamples * sizeof (float));
}
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (LiveScrollingAudioDisplay)

View file

@ -104,7 +104,7 @@ public:
thumbnail.addChangeListener (this);
}
~AudioThumbnailComponent()
~AudioThumbnailComponent() override
{
thumbnail.removeChangeListener (this);
}
@ -367,7 +367,7 @@ public:
setSize (800, 250);
}
~AudioFileReaderComponent()
~AudioFileReaderComponent() override
{
signalThreadShouldExit();
stop();
@ -551,7 +551,7 @@ private:
loopButton.getToggleStateValue().referTo (audioFileReader.loopState);
}
~AudioPlayerHeader()
~AudioPlayerHeader() override
{
audioFileReader.playState.removeListener (this);
}