Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rettinghaus committed Dec 24, 2024
1 parent 5e30ceb commit 08aa194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3930,7 +3930,7 @@ static void writeNotehead(XmlWriter& xml, const Note* const note)
xml.tagRaw(noteheadTagname, "other");
}

if (note->headScheme() == NoteHeadScheme::HEAD_PITCHNAME
if (note->headScheme() == NoteHeadScheme::HEAD_PITCHNAME
|| note->headScheme() == NoteHeadScheme::HEAD_PITCHNAME_GERMAN
|| note->headScheme() == NoteHeadScheme::HEAD_SOLFEGE
|| note->headScheme() == NoteHeadScheme::HEAD_SOLFEGE_FIXED) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6635,7 +6635,7 @@ Note* MusicXmlParserPass2::note(const String& partId,
}
if (noteheadText.size() == 1) {
headScheme = (noteheadText == u"H")
? NoteHeadScheme::HEAD_PITCHNAME_GERMAN : NoteHeadScheme::HEAD_PITCHNAME;
? NoteHeadScheme::HEAD_PITCHNAME_GERMAN : NoteHeadScheme::HEAD_PITCHNAME;
} else {
headScheme = NoteHeadScheme::HEAD_SOLFEGE;
}
Expand Down

0 comments on commit 08aa194

Please sign in to comment.