X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ffont-metric.cc;h=928adef851a93454ed0c44e6a3ec10d8552f7548;hb=4cdf1bbe00cc71d85f04f899a6293c5dbd90adf1;hp=655d992123f4859cbc4d73cbdf430d22fbaafc4e;hpb=9d9e2e5637e06d98245c3395b58207ec173e7e7d;p=lilypond.git diff --git a/lily/font-metric.cc b/lily/font-metric.cc index 655d992123..928adef851 100644 --- a/lily/font-metric.cc +++ b/lily/font-metric.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2007 Han-Wen Nienhuys + (c) 1999--2009 Han-Wen Nienhuys Mats Bengtsson (the ugly TeX parsing in text_dimension) */ @@ -31,7 +31,7 @@ Font_metric::design_size () const Stencil Font_metric::find_by_name (string s) const { - replace_all (s, '-', 'M'); + replace_all (&s, '-', 'M'); int idx = name_to_index (s); Box b; @@ -179,16 +179,15 @@ Font_metric::sub_fonts () const } Stencil -Font_metric::word_stencil (string str) const +Font_metric::word_stencil (string str, bool feta) const { - return text_stencil (str); + return text_stencil (str, feta); } Stencil -Font_metric::text_stencil (string str) const +Font_metric::text_stencil (string, bool) const { - (void) str; - programming_error("Cannot get a text stencil from this font"); + programming_error ("Cannot get a text stencil from this font"); return Stencil (Box (), SCM_EOL); }