]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-info.cc
* flower
[lilypond.git] / lily / grob-info.cc
index d4a0acc0cec2a6506374c2ce215d929a805a0a8c..38d074dde677a189672b8ab3b74f0766c6272e52 100644 (file)
@@ -19,23 +19,25 @@ Grob_info::Grob_info ()
   origin_trans_ = 0;
 }
 
-Music*
+Music *
 Grob_info::music_cause ()
 {
-  SCM cause = grob_->get_property ("cause"); 
+  SCM cause = grob_->get_property ("cause");
   return unsmob_music (cause);
 }
 
 Link_array<Context>
-Grob_info::origin_contexts (Translatorend) const
+Grob_info::origin_contexts (Translator *end) const
 {
-  Context * t = origin_trans_->context ();
+  Context *t = origin_trans_->context ();
   Link_array<Context> r;
-  do {
-    r.push (t);
-    t = t->get_parent_context ();
-  } while (t && t != end->context ());
-  
+  do
+    {
+      r.push (t);
+      t = t->get_parent_context ();
+    }
+  while (t && t != end->context ());
+
   return r;
 }
-  
+