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:
parent
611971181f
commit
2c0bf0b8ce
5 changed files with 4 additions and 159 deletions
|
|
@ -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; }
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue