1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Whitespace.

This commit is contained in:
jules 2015-02-18 11:01:05 +00:00
parent 553d46320d
commit b998308ccd
2 changed files with 19 additions and 19 deletions

View file

@ -492,7 +492,7 @@ public:
{
if (! (isAddingNewProperty || isDeletingProperty))
{
if (SetPropertyAction* const next = dynamic_cast <SetPropertyAction*> (nextAction))
if (SetPropertyAction* const next = dynamic_cast<SetPropertyAction*> (nextAction))
if (next->target == target && next->name == name
&& ! (next->isAddingNewProperty || next->isDeletingProperty))
return new SetPropertyAction (target, name, next->newValue, oldValue, false, false);
@ -592,7 +592,7 @@ public:
UndoableAction* createCoalescedAction (UndoableAction* nextAction)
{
if (MoveChildAction* next = dynamic_cast <MoveChildAction*> (nextAction))
if (MoveChildAction* next = dynamic_cast<MoveChildAction*> (nextAction))
if (next->parent == parent && next->startIndex == endIndex)
return new MoveChildAction (parent, startIndex, next->endIndex);
@ -711,7 +711,7 @@ Identifier ValueTree::getType() const
ValueTree ValueTree::getParent() const
{
return ValueTree (object != nullptr ? object->parent
: static_cast <SharedObject*> (nullptr));
: static_cast<SharedObject*> (nullptr));
}
ValueTree ValueTree::getSibling (const int delta) const
@ -846,7 +846,7 @@ int ValueTree::getNumChildren() const
ValueTree ValueTree::getChild (int index) const
{
return ValueTree (object != nullptr ? object->children.getObjectPointer (index)
: static_cast <SharedObject*> (nullptr));
: static_cast<SharedObject*> (nullptr));
}
ValueTree ValueTree::getChildWithName (const Identifier type) const