mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Minor clean-ups.
This commit is contained in:
parent
12c28fd882
commit
910b834f72
19 changed files with 95 additions and 57 deletions
|
|
@ -26,7 +26,7 @@
|
|||
class MarkerListScope : public Expression::Scope
|
||||
{
|
||||
public:
|
||||
MarkerListScope (Component& component_) : component (component_) {}
|
||||
MarkerListScope (Component& comp) : component (comp) {}
|
||||
|
||||
Expression getSymbolValue (const String& symbol) const
|
||||
{
|
||||
|
|
@ -90,8 +90,8 @@ private:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
RelativeCoordinatePositionerBase::ComponentScope::ComponentScope (Component& component_)
|
||||
: component (component_)
|
||||
RelativeCoordinatePositionerBase::ComponentScope::ComponentScope (Component& comp)
|
||||
: component (comp)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -151,8 +151,8 @@ Component* RelativeCoordinatePositionerBase::ComponentScope::findSiblingComponen
|
|||
class RelativeCoordinatePositionerBase::DependencyFinderScope : public ComponentScope
|
||||
{
|
||||
public:
|
||||
DependencyFinderScope (Component& component_, RelativeCoordinatePositionerBase& positioner_, bool& ok_)
|
||||
: ComponentScope (component_), positioner (positioner_), ok (ok_)
|
||||
DependencyFinderScope (Component& comp, RelativeCoordinatePositionerBase& positioner_, bool& ok_)
|
||||
: ComponentScope (comp), positioner (positioner_), ok (ok_)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -221,8 +221,8 @@ private:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
RelativeCoordinatePositionerBase::RelativeCoordinatePositionerBase (Component& component_)
|
||||
: Component::Positioner (component_), registeredOk (false)
|
||||
RelativeCoordinatePositionerBase::RelativeCoordinatePositionerBase (Component& comp)
|
||||
: Component::Positioner (comp), registeredOk (false)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -187,9 +187,9 @@ void RelativeRectangle::renameSymbol (const Expression::Symbol& oldSymbol, const
|
|||
class RelativeRectangleComponentPositioner : public RelativeCoordinatePositionerBase
|
||||
{
|
||||
public:
|
||||
RelativeRectangleComponentPositioner (Component& component_, const RelativeRectangle& rectangle_)
|
||||
: RelativeCoordinatePositionerBase (component_),
|
||||
rectangle (rectangle_)
|
||||
RelativeRectangleComponentPositioner (Component& comp, const RelativeRectangle& r)
|
||||
: RelativeCoordinatePositionerBase (comp),
|
||||
rectangle (r)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue