]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dots-engraver.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / dots-engraver.cc
index efe927e0ecdf357b33d6b6dfed95936e5852c4aa..d588e5e92b3aa1f782ce5ebaf7d1caf82c82dd64 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2006--2011 Han-Wen Nienhuys <hanwen@lilypond.org>
+  Copyright (C) 2006--2012 Han-Wen Nienhuys <hanwen@lilypond.org>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -25,8 +25,7 @@
 
 #include "translator.icc"
 
-
-class Dots_engraver : public Engraver 
+class Dots_engraver : public Engraver
 {
   DECLARE_ACKNOWLEDGER (rhythmic_head);
   TRANSLATOR_DECLARATIONS (Dots_engraver);
@@ -46,7 +45,7 @@ Dots_engraver::acknowledge_rhythmic_head (Grob_info gi)
   Grob *note = gi.grob ();
   if (unsmob_grob (note->get_object ("dot")))
     return;
-  
+
   Duration *dur = unsmob_duration (cause->get_property ("duration"));
   if (dur && dur->dot_count ())
     {
@@ -57,19 +56,18 @@ Dots_engraver::acknowledge_rhythmic_head (Grob_info gi)
     }
 }
 
-
 ADD_ACKNOWLEDGER (Dots_engraver, rhythmic_head);
 
 ADD_TRANSLATOR (Dots_engraver,
-               "Create @ref{Dots} objects for"
-               " @ref{rhythmic-head-interface}s.",
-
-               /* create */
-               "Dots ",
-
-               /* read */
-               "",
-              
-               /* write */
-               ""
-               );
+                "Create @ref{Dots} objects for"
+                " @ref{rhythmic-head-interface}s.",
+
+                /* create */
+                "Dots ",
+
+                /* read */
+                "",
+
+                /* write */
+                ""
+               );