]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-size-engraver.cc
Issue 4961/3: Add ly:length, ly:directed, ly:angle
[lilypond.git] / lily / font-size-engraver.cc
index b9250358dd2197a48356529db9aa5db9954f9bdb..4dfd24d01444a561a2485f6001aeb9f14f57c8d3 100644 (file)
@@ -25,7 +25,7 @@ class Font_size_engraver : public Engraver
 
   TRANSLATOR_DECLARATIONS (Font_size_engraver);
 protected:
-  DECLARE_ACKNOWLEDGER (font);
+  void acknowledge_font (Grob_info);
   void process_music ();
   Real size;
 private:
@@ -61,7 +61,12 @@ Font_size_engraver::acknowledge_font (Grob_info gi)
 
 #include "translator.icc"
 
-ADD_ACKNOWLEDGER (Font_size_engraver, font);
+void
+Font_size_engraver::boot ()
+{
+  ADD_ACKNOWLEDGER (Font_size_engraver, font);
+}
+
 ADD_TRANSLATOR (Font_size_engraver,
                 /* doc */
                 "Put @code{fontSize} into @code{font-size} grob property.",