X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmensural-ligature.cc;h=8522c8cc6f322f599c1f5ebd202638b412a00ae4;hb=5f03f8603e38802a1c38cf7a85a1c833ccfc2c39;hp=88a11810581abb86de38528c15456d7399803d04;hpb=9e69cb84d6ee5b0a861cd97869b10e3bdf0c833c;p=lilypond.git diff --git a/lily/mensural-ligature.cc b/lily/mensural-ligature.cc index 88a1181058..8522c8cc6f 100644 --- a/lily/mensural-ligature.cc +++ b/lily/mensural-ligature.cc @@ -1,10 +1,21 @@ /* - mensural-ligature.cc -- implement Mensural_ligature + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter - - (c) 2002--2006 Juergen Reuter , + Copyright (C) 2002--2009 Juergen Reuter , Pal Benko + + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #include "mensural-ligature.hh" @@ -124,22 +135,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 +200,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 +231,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 " );