]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-info.cc
doc string.
[lilypond.git] / lily / grob-info.cc
index e47d73e9ed664291b6d851bc0159862e99f12482..809fdd54a4c3c17b7cc7e7d4cfd98034da3ed8ca 100644 (file)
@@ -3,14 +3,14 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "grob.hh"
 #include "grob-info.hh"
 #include "music.hh"
 #include "translator-group.hh"
-
+#include "context.hh"
 
 Grob_info::Grob_info ()
 {
@@ -21,19 +21,19 @@ Grob_info::Grob_info ()
 Music*
 Grob_info::music_cause ()
 {
-  SCM cause = grob_->get_grob_property ("cause"); 
+  SCM cause = grob_->get_property ("cause"); 
   return unsmob_music (cause);
 }
 
-Link_array<Translator>
-Grob_info::origin_transes (Translator* end) const
+Link_array<Context>
+Grob_info::origin_contexts (Translator* end) const
 {
-  Translator * t = origin_trans_;
-  Link_array<Translator> r;
+  Context * t = origin_trans_->daddy_context_;
+  Link_array<Context> r;
   do {
     r.push (t);
-    t = t->daddy_trans_;
-  } while (t && t != end->daddy_trans_);
+    t = t->daddy_context_;
+  } while (t && t != end->daddy_context_);
   
   return r;
 }