]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-info.cc
remove TEXMF from variables.
[lilypond.git] / lily / grob-info.cc
index bc6205a8dc5e3fcb9c6f1f1e5b0a20c22029735f..38d074dde677a189672b8ab3b74f0766c6272e52 100644 (file)
@@ -3,11 +3,12 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-#include "grob.hh"
 #include "grob-info.hh"
+
+#include "grob.hh"
 #include "music.hh"
 #include "translator-group.hh"
 #include "context.hh"
@@ -18,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;
 }
-  
+