X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fline-interface.cc;h=c662d77d9f84f42b97e62d71f2c17b7320f113fc;hb=37ca1f80bf5401accd17056938f4f7b2c147ddb2;hp=13f5a8cdef59e6d863e4745d379712eb75ae52e1;hpb=ac6c83f047635535d0481a15654c13e776334dc6;p=lilypond.git diff --git a/lily/line-interface.cc b/lily/line-interface.cc index 13f5a8cdef..c662d77d9f 100644 --- a/lily/line-interface.cc +++ b/lily/line-interface.cc @@ -210,7 +210,7 @@ Line_interface::line (Grob *me, Offset from, Offset to) else if (type == ly_symbol2scm ("trill")) return make_trill_line (me, from, to); - Stencil stil; + Stencil stencil; if (type == ly_symbol2scm ("dashed-line") || type == ly_symbol2scm ("dotted-line")) { @@ -239,12 +239,12 @@ Line_interface::line (Grob *me, Offset from, Offset to) */ period = ((to-from).length () - period * fraction) / n; } - stil = make_dashed_line (thick, from, to, period, fraction); + stencil = make_dashed_line (thick, from, to, period, fraction); } else - stil = make_line (thick, from, to); + stencil = make_line (thick, from, to); - return stil; + return stencil; } ADD_INTERFACE (Line_interface,