X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmensural-ligature.cc;h=4f9e64c96193291a4cd724e23c5d842e70b7d477;hb=3dd7c6f29c9ca494976f69736b470b6300135099;hp=12b5218429e2ed1ce70c6a9a784fd36aae7dbf91;hpb=a276a19dc6bd57832db3107f2f2cbb04cb4677b6;p=lilypond.git diff --git a/lily/mensural-ligature.cc b/lily/mensural-ligature.cc index 12b5218429..4f9e64c961 100644 --- a/lily/mensural-ligature.cc +++ b/lily/mensural-ligature.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2002--2007 Juergen Reuter , + (c) 2002--2009 Juergen Reuter , Pal Benko */ @@ -124,22 +124,22 @@ internal_brew_primitive (Grob *me) return Lookup::blank (Box (Interval (0, 0), Interval (0, 0))); case MLP_LONGA: // mensural brevis head with right cauda out = Font_interface::get_default_font (me)->find_by_name - ("noteheads.s-2mensural"); + ("noteheads.sM2mensural"); break; case MLP_BREVIS: // mensural brevis head out = Font_interface::get_default_font (me)->find_by_name - ("noteheads.s-1mensural"); + ("noteheads.sM1mensural"); break; case MLP_MAXIMA: // should be mensural maxima head without stem out = Font_interface::get_default_font (me)->find_by_name - ("noteheads.s-1neomensural"); + ("noteheads.sM1neomensural"); break; case MLP_FLEXA: out = brew_flexa (me, delta_pitch, false, width, thickness); break; default: - programming_error (_f ("Mensural_ligature: " - "unexpected case fall-through")); + programming_error (_ ("Mensural_ligature: " + "unexpected case fall-through")); return Lookup::blank (Box (Interval (0, 0), Interval (0, 0))); } @@ -189,7 +189,7 @@ internal_brew_primitive (Grob *me) out.add_stencil (join); } else - programming_error (_f ("Mensural_ligature: (join_right == 0)")); + programming_error (_ ("Mensural_ligature: (join_right == 0)")); } #if 0 /* what happend with the ledger lines? */ @@ -220,13 +220,14 @@ Mensural_ligature::print (SCM) } ADD_INTERFACE (Mensural_ligature, - "A mensural ligature", + "A mensural ligature.", + /* properties */ "delta-position " "flexa-width " "head-width " "join-right-amount " "primitive " - "thickness" + "thickness " );