]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lyric-engraver.cc
(deep-WWW-clean): Remove wiki-dump. Fixes web-clean target.
[lilypond.git] / lily / lyric-engraver.cc
index 3b2e7b31c3b2c54e429f3a25e864da9df84a3e11..dca8de3e89f845d47d898a5a091f97b189064a4f 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
@@ -23,7 +23,7 @@ class Lyric_engraver : public Engraver
 protected:
   virtual void stop_translation_timestep ();
   virtual bool try_music (Music *);
-  virtual void create_grobs ();
+  virtual void process_acknowledged_grobs ();
   virtual void start_translation_timestep ();
   
 public:
@@ -56,7 +56,7 @@ Lyric_engraver::try_music (Music*r)
 }
 
 void
-Lyric_engraver::create_grobs ()
+Lyric_engraver::process_acknowledged_grobs ()
 {
   if (req_l_)
     {
@@ -73,7 +73,7 @@ Lyric_engraver::create_grobs ()
       
       text_p_->translate_axis (0.66, X_AXIS);
       
-      announce_grob (text_p_, req_l_);
+      announce_grob(text_p_, req_l_->self_scm());
       req_l_ = 0;
     }
 }