]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/rhythmic-column-engraver.cc
* lily/modified-font-metric.cc (text_dimension): try
[lilypond.git] / lily / rhythmic-column-engraver.cc
index 8ec466dde59ff48698394d93c97fa6d6f3923e6e..ad8e761c235167462a4f7ec85617dd368126d222 100644 (file)
@@ -61,12 +61,12 @@ protected:
 
 Rhythmic_column_engraver::Rhythmic_column_engraver ()
 {
-  spacing_ =0 ;
+  spacing_ = 0 ;
   last_spacing_ = 0;
   
-  stem_ =0;
-  note_column_=0;
-  dotcol_ =0;
+  stem_ = 0;
+  note_column_ = 0;
+  dotcol_ = 0;
 }
 
 
@@ -94,7 +94,7 @@ Rhythmic_column_engraver::process_acknowledged_grobs ()
 
        }
 
-      for (int i=0; i < rheads_.size (); i++)
+      for (int i = 0; i < rheads_.size (); i++)
        {
          if (!rheads_[i]->get_parent (X_AXIS))
            Note_column::add_head (note_column_, rheads_[i]);
@@ -144,21 +144,21 @@ Rhythmic_column_engraver::acknowledge_grob (Grob_info i)
 void
 Rhythmic_column_engraver::stop_translation_timestep ()
 {
-      note_column_ =0;
+      note_column_ = 0;
 
   if (spacing_)
     {
       last_spacing_ = spacing_;
-      spacing_ =0;
+      spacing_ = 0;
     }
   
-  dotcol_ =0;
-  stem_ =0;
+  dotcol_ = 0;
+  stem_ = 0;
 }
 
 
 
-ENTER_DESCRIPTION (Rhythmic_column_engraver,
+ADD_TRANSLATOR (Rhythmic_column_engraver,
 /* descr */       "Generates NoteColumn, an objects that groups stems, noteheads and rests.",
 /* creats*/       "NoteColumn NoteSpacing",
 /* accepts */     "",