]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-size-engraver.cc
Added texidoc template.
[lilypond.git] / lily / font-size-engraver.cc
index 9e68c27676a924ca575d4b6d44734720fb818674..3efa0fee379e170f0585baeffce8fdaa9fffbd57 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_->get_parent_context () != get_parent_context ())
+  if (gi.origin_trans_->context () != context ())
     return ;
   
-  if (ly_c_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));