]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-info.cc
* lily/moment.cc (robust_scm2moment): new function.
[lilypond.git] / lily / grob-info.cc
index fff2596a9d0a1960cfdc3a7010a9a89662f93a9d..bc6205a8dc5e3fcb9c6f1f1e5b0a20c22029735f 100644 (file)
@@ -3,20 +3,14 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 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"
-
-Grob_info::Grob_info (Grob*s)
-{
-  grob_ = s;
-  origin_trans_ = 0;  
-}
-
+#include "context.hh"
 
 Grob_info::Grob_info ()
 {
@@ -26,21 +20,20 @@ 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_->context ();
+  Link_array<Context> r;
   do {
     r.push (t);
-    t = t->daddy_trans_;
-  } while (t && t != end->daddy_trans_);
+    t = t->get_parent_context ();
+  } while (t && t != end->context ());
   
   return r;
 }