mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added some missing override keywords
This commit is contained in:
parent
06abfc16ce
commit
ba85dd7a05
9 changed files with 32 additions and 32 deletions
|
|
@ -41,12 +41,12 @@ public:
|
|||
RelativeCoordinatePositionerBase (Component&);
|
||||
~RelativeCoordinatePositionerBase();
|
||||
|
||||
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;
|
||||
|
|
|
|||
|
|
@ -99,9 +99,9 @@ public:
|
|||
{
|
||||
public:
|
||||
StartSubPath (const RelativePoint& pos);
|
||||
void addToPath (Path& path, Expression::Scope*) const;
|
||||
RelativePoint* getControlPoints (int& numPoints);
|
||||
ElementBase* clone() const;
|
||||
void addToPath (Path& path, Expression::Scope*) const override;
|
||||
RelativePoint* getControlPoints (int& numPoints) override;
|
||||
ElementBase* clone() const override;
|
||||
|
||||
RelativePoint startPos;
|
||||
|
||||
|
|
@ -115,9 +115,9 @@ public:
|
|||
{
|
||||
public:
|
||||
CloseSubPath();
|
||||
void addToPath (Path& path, Expression::Scope*) const;
|
||||
RelativePoint* getControlPoints (int& numPoints);
|
||||
ElementBase* clone() const;
|
||||
void addToPath (Path& path, Expression::Scope*) const override;
|
||||
RelativePoint* getControlPoints (int& numPoints) override;
|
||||
ElementBase* clone() const override;
|
||||
|
||||
private:
|
||||
JUCE_DECLARE_NON_COPYABLE (CloseSubPath)
|
||||
|
|
@ -146,9 +146,9 @@ public:
|
|||
public:
|
||||
QuadraticTo (const RelativePoint& controlPoint, const RelativePoint& endPoint);
|
||||
ValueTree createTree() const;
|
||||
void addToPath (Path& path, Expression::Scope*) const;
|
||||
RelativePoint* getControlPoints (int& numPoints);
|
||||
ElementBase* clone() const;
|
||||
void addToPath (Path& path, Expression::Scope*) const override;
|
||||
RelativePoint* getControlPoints (int& numPoints) override;
|
||||
ElementBase* clone() const override;
|
||||
|
||||
RelativePoint controlPoints[2];
|
||||
|
||||
|
|
@ -163,9 +163,9 @@ public:
|
|||
public:
|
||||
CubicTo (const RelativePoint& controlPoint1, const RelativePoint& controlPoint2, const RelativePoint& endPoint);
|
||||
ValueTree createTree() const;
|
||||
void addToPath (Path& path, Expression::Scope*) const;
|
||||
RelativePoint* getControlPoints (int& numPoints);
|
||||
ElementBase* clone() const;
|
||||
void addToPath (Path& path, Expression::Scope*) const override;
|
||||
RelativePoint* getControlPoints (int& numPoints) override;
|
||||
ElementBase* clone() const override;
|
||||
|
||||
RelativePoint controlPoints[3];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue