]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/collision-engraver.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / collision-engraver.cc
index b67a8d8d3c6926f6af3326aab0c258fb76b68401..637d6d964311ef86ba06a27f0c78953458ec68c4 100644 (file)
@@ -3,13 +3,12 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
+#include "engraver.hh"
 #include "note-column.hh"
 #include "note-collision.hh"
-
-#include "engraver.hh"
 #include "axis-group-interface.hh"
 
 class Collision_engraver : public Engraver
@@ -31,9 +30,7 @@ Collision_engraver::process_acknowledged ()
   if (col_ || note_columns_.size () < 2)
     return;
   if (!col_)
-    {
-      col_ = make_item ("NoteCollision", SCM_EOL);
-    }
+    col_ = make_item ("NoteCollision", SCM_EOL);
 
   for (int i = 0; i < note_columns_.size (); i++)
     Note_collision_interface::add_column (col_, note_columns_[i]);
@@ -69,8 +66,8 @@ Collision_engraver::Collision_engraver ()
 ADD_ACKNOWLEDGER (Collision_engraver, note_column);
 
 ADD_TRANSLATOR (Collision_engraver,
-               /* descr */ "Collect NoteColumns, and as soon as there are two or more, put them in a NoteCollision object.",
-               /* creats*/ "NoteCollision",
-               /* accepts */ "",
-               /* reads */ "",
+               /* doc */ "Collect NoteColumns, and as soon as there are two or more, put them in a NoteCollision object.",
+               /* creat*/ "NoteCollision",
+               /* accept */ "",
+               /* read */ "",
                /* write */ "");