diff --git a/extras/Introjucer/JuceLibraryCode/BinaryData.cpp b/extras/Introjucer/JuceLibraryCode/BinaryData.cpp index 45ab672e50..60ff50895e 100644 --- a/extras/Introjucer/JuceLibraryCode/BinaryData.cpp +++ b/extras/Introjucer/JuceLibraryCode/BinaryData.cpp @@ -307,30 +307,6 @@ static const unsigned char temp_binary_data_4[] = " return JucePlugin_Name;\r\n" "}\r\n" "\r\n" -"int FILTERCLASSNAME::getNumParameters()\r\n" -"{\r\n" -" return 0;\r\n" -"}\r\n" -"\r\n" -"float FILTERCLASSNAME::getParameter (int index)\r\n" -"{\r\n" -" return 0.0f;\r\n" -"}\r\n" -"\r\n" -"void FILTERCLASSNAME::setParameter (int index, float newValue)\r\n" -"{\r\n" -"}\r\n" -"\r\n" -"const String FILTERCLASSNAME::getParameterName (int index)\r\n" -"{\r\n" -" return String();\r\n" -"}\r\n" -"\r\n" -"const String FILTERCLASSNAME::getParameterText (int index)\r\n" -"{\r\n" -" return String();\r\n" -"}\r\n" -"\r\n" "const String FILTERCLASSNAME::getInputChannelName (int channelIndex) const\r\n" "{\r\n" " return String (channelIndex + 1);\r\n" @@ -512,13 +488,6 @@ static const unsigned char temp_binary_data_5[] = " //==============================================================================\r\n" " const String getName() const override;\r\n" "\r\n" -" int getNumParameters() override;\r\n" -" float getParameter (int index) override;\r\n" -" void setParameter (int index, float newValue) override;\r\n" -"\r\n" -" const String getParameterName (int index) override;\r\n" -" const String getParameterText (int index) override;\r\n" -"\r\n" " const String getInputChannelName (int channelIndex) const override;\r\n" " const String getOutputChannelName (int channelIndex) const override;\r\n" " bool isInputChannelStereoPair (int index) const override;\r\n" @@ -4080,8 +4049,8 @@ const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) throw case 0xafccbd3f: numBytes = 3189; return jucer_AudioComponentTemplate_cpp; case 0x27c5a93a: numBytes = 1180; return jucer_AudioPluginEditorTemplate_cpp; case 0x4d0721bf: numBytes = 1012; return jucer_AudioPluginEditorTemplate_h; - case 0x51b49ac5: numBytes = 5039; return jucer_AudioPluginFilterTemplate_cpp; - case 0x488afa0a: numBytes = 2727; return jucer_AudioPluginFilterTemplate_h; + case 0x51b49ac5: numBytes = 4648; return jucer_AudioPluginFilterTemplate_cpp; + case 0x488afa0a: numBytes = 2464; return jucer_AudioPluginFilterTemplate_h; case 0xabad7041: numBytes = 2161; return jucer_ComponentTemplate_cpp; case 0xfc72fe86: numBytes = 2141; return jucer_ComponentTemplate_h; case 0x0b66646c: numBytes = 886; return jucer_ContentCompTemplate_cpp; diff --git a/extras/Introjucer/JuceLibraryCode/BinaryData.h b/extras/Introjucer/JuceLibraryCode/BinaryData.h index fa7832d8ca..8af762c6bb 100644 --- a/extras/Introjucer/JuceLibraryCode/BinaryData.h +++ b/extras/Introjucer/JuceLibraryCode/BinaryData.h @@ -22,10 +22,10 @@ namespace BinaryData const int jucer_AudioPluginEditorTemplate_hSize = 1012; extern const char* jucer_AudioPluginFilterTemplate_cpp; - const int jucer_AudioPluginFilterTemplate_cppSize = 5039; + const int jucer_AudioPluginFilterTemplate_cppSize = 4648; extern const char* jucer_AudioPluginFilterTemplate_h; - const int jucer_AudioPluginFilterTemplate_hSize = 2727; + const int jucer_AudioPluginFilterTemplate_hSize = 2464; extern const char* jucer_ComponentTemplate_cpp; const int jucer_ComponentTemplate_cppSize = 2161; diff --git a/extras/Introjucer/Source/BinaryData/jucer_AudioPluginFilterTemplate.cpp b/extras/Introjucer/Source/BinaryData/jucer_AudioPluginFilterTemplate.cpp index f30aafe18a..fdf3d01b9c 100644 --- a/extras/Introjucer/Source/BinaryData/jucer_AudioPluginFilterTemplate.cpp +++ b/extras/Introjucer/Source/BinaryData/jucer_AudioPluginFilterTemplate.cpp @@ -26,30 +26,6 @@ const String FILTERCLASSNAME::getName() const return JucePlugin_Name; } -int FILTERCLASSNAME::getNumParameters() -{ - return 0; -} - -float FILTERCLASSNAME::getParameter (int index) -{ - return 0.0f; -} - -void FILTERCLASSNAME::setParameter (int index, float newValue) -{ -} - -const String FILTERCLASSNAME::getParameterName (int index) -{ - return String(); -} - -const String FILTERCLASSNAME::getParameterText (int index) -{ - return String(); -} - const String FILTERCLASSNAME::getInputChannelName (int channelIndex) const { return String (channelIndex + 1); diff --git a/extras/Introjucer/Source/BinaryData/jucer_AudioPluginFilterTemplate.h b/extras/Introjucer/Source/BinaryData/jucer_AudioPluginFilterTemplate.h index b5821d728d..f9687b8f6a 100644 --- a/extras/Introjucer/Source/BinaryData/jucer_AudioPluginFilterTemplate.h +++ b/extras/Introjucer/Source/BinaryData/jucer_AudioPluginFilterTemplate.h @@ -37,13 +37,6 @@ public: //============================================================================== const String getName() const override; - int getNumParameters() override; - float getParameter (int index) override; - void setParameter (int index, float newValue) override; - - const String getParameterName (int index) override; - const String getParameterText (int index) override; - const String getInputChannelName (int channelIndex) const override; const String getOutputChannelName (int channelIndex) const override; bool isInputChannelStereoPair (int index) const override;