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

Modified example plug-ins to use JUCE's internal generic editor and removed the no longer needed GenericEditor.h

This commit is contained in:
hogliux 2018-02-22 13:02:49 +00:00 committed by Tom Poole
parent 611971181f
commit 2c0bf0b8ce
5 changed files with 4 additions and 159 deletions

View file

@ -25,7 +25,6 @@
*/
#include "../JuceLibraryCode/JuceHeader.h"
#include "../../GenericEditor.h"
//==============================================================================
/**
@ -104,7 +103,7 @@ public:
}
//==============================================================================
AudioProcessorEditor* createEditor() override { return new GenericEditor (*this); }
AudioProcessorEditor* createEditor() override { return new GenericAudioProcessorEditor (this); }
bool hasEditor() const override { return true; }
//==============================================================================