]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/keep-alive-together-engraver.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / keep-alive-together-engraver.cc
index 8cda5a0d5fecec3d4b342a2a4670095079633220..f6ba297ccfe4b5bd8fd84776e9d62c3799a5bc8e 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2010--2011 Joe Neeman <joeneeman@gmail.com>
+  Copyright (C) 2010--2012 Joe Neeman <joeneeman@gmail.com>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -27,7 +27,7 @@
 
 class Keep_alive_together_engraver: public Engraver
 {
-  vector<Grob*> group_spanners_;
+  vector<Grob *> group_spanners_;
 
 public:
   TRANSLATOR_DECLARATIONS (Keep_alive_together_engraver);
@@ -65,21 +65,21 @@ Keep_alive_together_engraver::finalize ()
 ADD_ACKNOWLEDGER (Keep_alive_together_engraver, hara_kiri_group_spanner);
 
 ADD_TRANSLATOR (Keep_alive_together_engraver,
-               /* doc */
-               "This engraver collects all @code{Hara_kiri_group_spanner}s "
-               "that are created in contexts at or below its own.  "
-               "These spanners are then tied together so that one will "
-               "be removed only if all are removed.  For example, "
-               "if a @code{StaffGroup} uses this engraver, then the staves "
-               "in the group will all be visible as long as there is a note "
-               "in at least one of them.",
-
-               /* create */
-               "",
-
-               /* read */
-               "",
-
-               /* write */
-               ""
-               );
+                /* doc */
+                "This engraver collects all @code{Hara_kiri_group_spanner}s "
+                "that are created in contexts at or below its own.  "
+                "These spanners are then tied together so that one will "
+                "be removed only if all are removed.  For example, "
+                "if a @code{StaffGroup} uses this engraver, then the staves "
+                "in the group will all be visible as long as there is a note "
+                "in at least one of them.",
+
+                /* create */
+                "",
+
+                /* read */
+                "",
+
+                /* write */
+                ""
+               );