]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lyric-engraver.cc
2003 -> 2004
[lilypond.git] / lily / lyric-engraver.cc
index bbaa005cdffd9176f13adfc78d676a777c17e8f0..23b98b095a09d94f7a11abba2767a5b6c8ca9fee 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
@@ -24,7 +24,6 @@ protected:
   virtual void stop_translation_timestep ();
   virtual bool try_music (Music *);
   virtual void process_music ();
-  virtual void start_translation_timestep ();
   
 public:
   TRANSLATOR_DECLARATIONS(Lyric_engraver);
@@ -60,19 +59,9 @@ Lyric_engraver::process_music ()
 {
   if (req_)
     {
-      text_=  new Item (get_property ("LyricText"));
+      text_=  make_item ("LyricText");
       
       text_->set_grob_property ("text", req_->get_mus_property ("text"));
-
-      /*
-       We can't reach the notehead where we're centered from here. So
-       we kludge.
-
-       (UGH UGH, pulled amount of space out of thin air)
-      */
-      
-      text_->translate_axis (0.66, X_AXIS);
-      
       announce_grob (text_, req_->self_scm());
     }
 }
@@ -85,11 +74,6 @@ Lyric_engraver::stop_translation_timestep ()
       typeset_grob (text_);
       text_ =0;
     }
-}
-
-void
-Lyric_engraver::start_translation_timestep ()
-{
   req_ =0;
 }