]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/beam-performer.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / beam-performer.cc
index 861f66f35aa3436d9961e21feaa26986b859782d..0998ef3220d9e0c43adad8d230c42e3ef6c96748 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1996--2005 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1996--2006 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include "performer.hh"
@@ -22,8 +22,8 @@ public:
 
 protected:
   virtual bool try_music (Music *ev);
-  PRECOMPUTED_VIRTUAL void start_translation_timestep ();
-  PRECOMPUTED_VIRTUAL void process_music ();
+  void start_translation_timestep ();
+  void process_music ();
   void set_melisma (bool);
 private:
   Music *start_ev_;
@@ -77,18 +77,14 @@ Beam_performer::try_music (Music *m)
       Direction d = to_dir (m->get_property ("span-direction"));
 
       if (d == START)
-       {
-         start_ev_ = m;
-       }
+       start_ev_ = m;
       else if (d == STOP)
-       {
-         now_stop_ev_ = m;
-       }
+       now_stop_ev_ = m;
       return true;
     }
   return false;
 }
 
 ADD_TRANSLATOR (Beam_performer, "", "",
-               "beam-event", "", "", "");
+               "beam-event", "", "");