]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dot-column-engraver.cc
* lily/output-def-scheme.cc: new file.
[lilypond.git] / lily / dot-column-engraver.cc
index 141f2cfec63e01ea890945e5fa86469026548616..6cabafe451f8e5c69cad94c0eac7b4db08d2a3e6 100644 (file)
@@ -7,7 +7,6 @@
   
  */
 
-
 #include "rhythmic-head.hh"
 #include "dot-column.hh"
 #include "side-position-interface.hh"
@@ -30,24 +29,24 @@ protected:
 
 Dot_column_engraver::Dot_column_engraver ()
 {
-  dotcol_ =0;
+  dotcol_ = 0;
   stem_ = 0;
 }
 
 void
 Dot_column_engraver::stop_translation_timestep ()
 {
-      /*
-       Add the stem to the support so dots stay clear of flags.
+  /*
+    Add the stem to the support so dots stay clear of flags.
 
-       See [Ross, p 171]
-       */
-      if (stem_ && dotcol_)
-       dotcol_->set_property ("stem", stem_->self_scm ());
+    See [Ross, p 171]
+  */
+  if (stem_ && dotcol_)
+    dotcol_->set_property ("stem", stem_->self_scm ());
       
-      dotcol_ =0;
+  dotcol_ = 0;
   heads_.clear ();
-  stem_ =0;
+  stem_ = 0;
 }
 
 void
@@ -73,8 +72,8 @@ Dot_column_engraver::acknowledge_grob (Grob_info info)
 
 
 
-ENTER_DESCRIPTION (Dot_column_engraver,
-/* descr */       " Engraves dots on dotted notes shifted to the right of the note.\n"
+ADD_TRANSLATOR (Dot_column_engraver,
+/* descr */       "Engraves dots on dotted notes shifted to the right of the note.\n"
 "If omitted, then dots appear on top of the notes.",
 /* creats*/       "DotColumn",
 /* accepts */     "",