]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-size-engraver.cc
(get_indexed_char): scale metrics by
[lilypond.git] / lily / font-size-engraver.cc
index f26b17ce4249b178331fa94853de7827a3bc0b27..46672d0ac10f150cf0b685873af45b556d877da8 100644 (file)
@@ -33,12 +33,12 @@ Font_size_engraver::acknowledge_grob (Grob_info gi)
   /*
     We only want to process a grob once.
    */
-  if (gi.origin_trans_->daddy_context_ != daddy_context_)
+  if (gi.origin_trans_->context () != context ())
     return ;
   
-  if (ly_number_p (sz) && ly_scm2double (sz))
+  if (scm_is_number (sz) && scm_to_double (sz))
     {
-      Real font_size = ly_scm2double (sz);
+      Real font_size = scm_to_double (sz);
       
       font_size +=  robust_scm2double (gi.grob_->get_property ("font-size"), 0);
       gi.grob_->set_property ("font-size", scm_make_real (font_size));
@@ -46,7 +46,7 @@ Font_size_engraver::acknowledge_grob (Grob_info gi)
 }
 
 
-ENTER_DESCRIPTION (Font_size_engraver,
+ADD_TRANSLATOR (Font_size_engraver,
 /* descr */       "Puts fontSize into font-relative-size grob property.",
 /* creats*/       "",
 /* accepts */     "",