Skip to content

Commit 4ecd90d

Browse files
committed
Fix build
1 parent fa0da3c commit 4ecd90d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/engraving/dom/parenthesis.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ bool Parenthesis::setProperty(Pid pid, const PropertyValue& v)
5353
switch (pid) {
5454
case Pid::HORIZONTAL_DIRECTION:
5555
setDirection(v.value<DirectionH>());
56+
break;
5657
default:
5758
return EngravingItem::setProperty(pid, v);
5859
}
@@ -72,5 +73,5 @@ PropertyValue Parenthesis::propertyDefault(Pid pid) const
7273

7374
String Parenthesis::accessibleInfo() const
7475
{
75-
return String("%1: %2").arg(EngravingItem::accessibleInfo(), TConv::translatedUserName(direction()));
76+
return String(u"%1: %2").arg(EngravingItem::accessibleInfo(), TConv::translatedUserName(direction()));
7677
}

0 commit comments

Comments
 (0)