]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-heads-engraver.cc
release: 1.3.142
[lilypond.git] / lily / note-heads-engraver.cc
index 2d13e7a7a87b7429762531ca63472fd350416800..2b3b9e082732853dc343439a189a34b680c65e25 100644 (file)
@@ -26,7 +26,7 @@ class Note_heads_engraver : public Engraver
   Moment note_end_mom_;
 public:
   VIRTUAL_COPY_CONS (Translator);
-
+  
 protected:
   virtual void start_translation_timestep ();
   virtual bool try_music (Music *req_l) ;
@@ -35,6 +35,7 @@ protected:
   virtual void stop_translation_timestep ();
 };
 
+
 bool
 Note_heads_engraver::try_music (Music *m) 
 {
@@ -130,7 +131,6 @@ Note_heads_engraver::stop_translation_timestep ()
 void
 Note_heads_engraver::start_translation_timestep ()
 {
-  
   /* TODO:make this settable?
    */
   if (note_end_mom_ > now_mom ())
@@ -147,8 +147,6 @@ Note_heads_engraver::start_translation_timestep ()
       else
        e->forbid_breaks ();    // guh. Use properties!
     }
-
-  
 }