1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Fixed some more Linux compiler warnings

This commit is contained in:
Tom Poole 2019-06-05 17:45:33 +01:00
parent 6b82c964cd
commit a4bd6cbc66
67 changed files with 205 additions and 141 deletions

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);
}