upgrade to JUCE 5.4.3. Remove (probably) unused JUCE modules. Remove VST2 target (it's been end-of-life'd by Steinberg and by JUCE)

This commit is contained in:
Alex Birch
2019-06-22 20:41:38 +01:00
parent d22c2cd4fa
commit 9ee566b251
1140 changed files with 67534 additions and 105952 deletions

View File

@ -624,7 +624,7 @@ public:
CustomComponent (bool isTriggeredAutomatically = true);
/** Destructor. */
~CustomComponent();
~CustomComponent() override;
/** Returns a rectangle with the size that this component would like to have.
@ -666,7 +666,7 @@ public:
{
public:
CustomCallback();
~CustomCallback();
~CustomCallback() override;
/** Callback to indicate this item has been triggered.
@returns true if the itemID should be sent to the exitModalState method, or
@ -684,7 +684,7 @@ public:
*/
struct JUCE_API LookAndFeelMethods
{
virtual ~LookAndFeelMethods() {}
virtual ~LookAndFeelMethods() = default;
/** Fills the background of a popup menu component. */
virtual void drawPopupMenuBackground (Graphics&, int width, int height) = 0;