]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/footnote-engraver.cc
Grand fixcc.py run on all .hh .cc files.
[lilypond.git] / lily / footnote-engraver.cc
index 7539bf95039e3ff33be4d8cd93086ab2bad28a50..6b62af0d47f72131fd06878a6004b1f59a8bdb41 100644 (file)
@@ -70,7 +70,7 @@ Footnote_engraver::footnotify (Grob *g, Stream_event *event)
       b->set_parent (s, X_AXIS);
       Grob *bound = unsmob_grob (get_property ("currentMusicalColumn"));
       b->set_bound (LEFT, bound);
-      annotated_spanners_.push_back (Drul_array<Spanner *> (s,b));
+      annotated_spanners_.push_back (Drul_array<Spanner *> (s, b));
     }
   else
     {
@@ -90,13 +90,13 @@ Footnote_engraver::acknowledge_grob (Grob_info info)
     {
       Stream_event *e = unsmob_stream_event (scm_car (s));
       if (e->in_event_class ("footnote-event"))
-         footnotify (info.grob (), e);
+        footnotify (info.grob (), e);
     }
 
   for (vsize i = 0; i < events_.size (); i++)
     {
       if (info.grob ()->name () == ly_symbol2string (events_[i]->get_property ("symbol")))
-       footnotify (info.grob (), events_[i]);
+        footnotify (info.grob (), events_[i]);
     }
 }
 
@@ -121,16 +121,16 @@ ADD_ACKNOWLEDGER (Footnote_engraver, grob);
 ADD_END_ACKNOWLEDGER (Footnote_engraver, grob);
 
 ADD_TRANSLATOR (Footnote_engraver,
-              /* doc */
-              "Create footnote texts.",
+                /* doc */
+                "Create footnote texts.",
 
-              /* create */
-              "FootnoteItem "
-              "FootnoteSpanner ",
+                /* create */
+                "FootnoteItem "
+                "FootnoteSpanner ",
 
-              /*read*/
-              "currentMusicalColumn ",
+                /*read*/
+                "currentMusicalColumn ",
 
-              /*write*/
-              ""
-              );
+                /*write*/
+                ""
+               );