1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Minor clean-ups and documentation fixes.

This commit is contained in:
jules 2012-12-20 21:26:12 +00:00
parent 68b2e056e7
commit 5d35a31f2e
7 changed files with 155 additions and 155 deletions

View file

@ -482,13 +482,10 @@ public:
{
if (! (isAddingNewProperty || isDeletingProperty))
{
SetPropertyAction* const next = dynamic_cast <SetPropertyAction*> (nextAction);
if (next != nullptr && next->target == target && next->name == name
&& ! (next->isAddingNewProperty || next->isDeletingProperty))
{
return new SetPropertyAction (target, name, next->newValue, oldValue, false, false);
}
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);
}
return nullptr;