]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-info.cc
release: 1.5.29
[lilypond.git] / lily / grob-info.cc
index 542e9698bbb96b558d589a10ff74d1bac7513d6a..93fb16aeee58ca95acda43d8835642b6cbfe95bc 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "grob-info.hh"
 #include "translator.hh"
 #include "translator-group.hh"
 
-Grob_info::Grob_info (Grob*s_l, Music *r_l)
+Grob_info::Grob_info (Grob*s_l, SCM c)
 {
   grob_l_ = s_l;
-  req_l_ = r_l;
+  cause_ = c; 
   origin_trans_l_ = 0;  
 }
 
@@ -22,10 +22,15 @@ Grob_info::Grob_info (Grob*s_l, Music *r_l)
 Grob_info::Grob_info ()
 {
   grob_l_ = 0;
-  req_l_ = 0;
+  cause_ = SCM_EOL;
   origin_trans_l_ = 0;
 }
 
+Music*
+Grob_info::music_cause ()
+{
+  return unsmob_music (cause_);
+}
 
 Link_array<Translator>
 Grob_info::origin_trans_l_arr (Translator* end) const