X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmeasure-grouping-spanner.cc;h=78d625ec665da8539e3c41bd21c25367da40c8ee;hb=90b574e8cd3b93ae2148facfa475109694d395da;hp=9918b5051b05a2c81e42e6d0c9282000f98e09ad;hpb=58bcc84c9480dae1b21bc24d8396b91fe19e0131;p=lilypond.git diff --git a/lily/measure-grouping-spanner.cc b/lily/measure-grouping-spanner.cc index 9918b5051b..78d625ec66 100644 --- a/lily/measure-grouping-spanner.cc +++ b/lily/measure-grouping-spanner.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2002--2005 Han-Wen Nienhuys + (c) 2002--2007 Han-Wen Nienhuys */ #include "measure-grouping-spanner.hh" @@ -38,21 +38,22 @@ Measure_grouping::print (SCM grob) TODO: use line interface */ if (which == ly_symbol2scm ("bracket")) - { - m = Lookup::bracket (X_AXIS, iv, t, -height, t); - } + m = Lookup::bracket (X_AXIS, iv, t, -height, t); else if (which == ly_symbol2scm ("triangle")) - { - m = Lookup::triangle (iv, t, height); - } + m = Lookup::triangle (iv, t, height); m.align_to (Y_AXIS, DOWN); m.translate_axis (- me->relative_coordinate (common, X_AXIS), X_AXIS); return m.smobbed_copy (); } -ADD_INTERFACE (Measure_grouping, "measure-grouping-interface", - "This object indicates groups of beats. " - "Valid choices for @code{style} are @code{bracket} and @code{triangle}.", - "thickness style height"); +ADD_INTERFACE (Measure_grouping, + "This object indicates groups of beats. Valid choices for" + " @code{style} are @code{bracket} and @code{triangle}.", + + /* properties */ + "thickness " + "style " + "height " + );