Skip to content

Commit 5031a7e

Browse files
committed
Run uncrustify
1 parent da814ba commit 5031a7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/engraving/dom/score.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3743,9 +3743,9 @@ void Score::collectMatch(ElementPattern* p, EngravingItem* e)
37433743
} else if ((toNote(e)->chord()->isGrace()) || (p->subtype != e->subtype())) {
37443744
return;
37453745
}
3746-
} else if(p->type == int(ElementType::HARMONY)){
3746+
} else if (p->type == int(ElementType::HARMONY)) {
37473747
const Harmony* h = toHarmony(e);
3748-
if(p->subtypeValid && p->subtype != static_cast<int>(h->harmonyType())){
3748+
if (p->subtypeValid && p->subtype != static_cast<int>(h->harmonyType())) {
37493749
return;
37503750
}
37513751
} else if (p->subtypeValid && p->subtype != e->subtype()) {
@@ -3910,7 +3910,7 @@ void Score::selectSimilarInRange(EngravingItem* e)
39103910
} else if (e->type() == ElementType::HAIRPIN_SEGMENT) {
39113911
pattern.subtype = e->subtype();
39123912
pattern.subtypeValid = true;
3913-
} else if (e->type() == ElementType::HARMONY){
3913+
} else if (e->type() == ElementType::HARMONY) {
39143914
Harmony* h = toHarmony(e);
39153915
auto ht = h->harmonyType();
39163916

0 commit comments

Comments
 (0)