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:
@ -39,14 +39,14 @@ class JUCE_API RelativeCoordinatePositionerBase : public Component::Positioner
|
||||
{
|
||||
public:
|
||||
RelativeCoordinatePositionerBase (Component&);
|
||||
~RelativeCoordinatePositionerBase();
|
||||
~RelativeCoordinatePositionerBase() override;
|
||||
|
||||
void componentMovedOrResized (Component&, bool, bool);
|
||||
void componentParentHierarchyChanged (Component&);
|
||||
void componentChildrenChanged (Component&);
|
||||
void componentBeingDeleted (Component&);
|
||||
void markersChanged (MarkerList*);
|
||||
void markerListBeingDeleted (MarkerList*);
|
||||
void componentMovedOrResized (Component&, bool, bool) override;
|
||||
void componentParentHierarchyChanged (Component&) override;
|
||||
void componentChildrenChanged (Component&) override;
|
||||
void componentBeingDeleted (Component&) override;
|
||||
void markersChanged (MarkerList*) override;
|
||||
void markerListBeingDeleted (MarkerList*) override;
|
||||
|
||||
void apply();
|
||||
|
||||
@ -63,9 +63,9 @@ public:
|
||||
// Suppress a VS2013 compiler warning
|
||||
ComponentScope& operator= (const ComponentScope&) = delete;
|
||||
|
||||
Expression getSymbolValue (const String& symbol) const;
|
||||
void visitRelativeScope (const String& scopeName, Visitor&) const;
|
||||
String getScopeUID() const;
|
||||
Expression getSymbolValue (const String& symbol) const override;
|
||||
void visitRelativeScope (const String& scopeName, Visitor&) const override;
|
||||
String getScopeUID() const override;
|
||||
|
||||
protected:
|
||||
Component& component;
|
||||
|
Reference in New Issue
Block a user