From 3f50693025d9894e2d088d44050ded20e4d0451d Mon Sep 17 00:00:00 2001 From: Timur Doumler Date: Thu, 25 Feb 2016 23:26:18 +0000 Subject: [PATCH] AudioPluginDemo: removed deprecated input/outputChannel methods to avoid compiler warning. --- examples/audio plugin demo/Source/PluginProcessor.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/audio plugin demo/Source/PluginProcessor.h b/examples/audio plugin demo/Source/PluginProcessor.h index e363f74e99..4a4bc315a3 100644 --- a/examples/audio plugin demo/Source/PluginProcessor.h +++ b/examples/audio plugin demo/Source/PluginProcessor.h @@ -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; }