1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

AudioPluginDemo: removed deprecated input/outputChannel methods to avoid compiler warning.

This commit is contained in:
Timur Doumler 2016-02-25 23:26:18 +00:00
parent 56b6efbbad
commit 3f50693025

View file

@ -50,12 +50,6 @@ public:
//==============================================================================
const String getName() const override { return JucePlugin_Name; }
const String getInputChannelName (int channelIndex) const override { return String (channelIndex + 1); }
const String getOutputChannelName (int channelIndex) const override { return String (channelIndex + 1); }
bool isInputChannelStereoPair (int /*index*/) const override { return true; }
bool isOutputChannelStereoPair (int /*index*/) const override { return true; }
bool acceptsMidi() const override { return true; }
bool producesMidi() const override { return true; }