Skip to content

Commit

Permalink
fix strings
Browse files Browse the repository at this point in the history
  • Loading branch information
rettinghaus committed Sep 18, 2024
1 parent 901a9b3 commit a3ac0c5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7383,12 +7383,12 @@ void MusicXMLParserPass2::harmony(const String& partId, Measure* measure, const
} else if (m_e.name() == "inversion") {
const int inversion = m_e.readText().toInt();
switch (inversion) {
case 1: inversionText = "6";
case 1: inversionText = u"6";
break;
case 2: inversionText = "64";
case 2: inversionText = u"64";
break;
default:
inversionText = "";
inversionText = u"";
break;
}
} else if (m_e.name() == "bass") {
Expand Down

0 comments on commit a3ac0c5

Please sign in to comment.