]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/span-arpeggio-engraver.cc
catch GUILE errors
[lilypond.git] / lily / span-arpeggio-engraver.cc
index 0753b2c245119cd06333e5b918f9348fd54a4f0e..137c5a70632fb9f345287e064fb38099a709a397 100644 (file)
@@ -26,7 +26,7 @@ public:
   
 protected:
   virtual void acknowledge_grob (Grob_info);
-  virtual void create_grobs ();
+  virtual void process_acknowledged_grobs ();
   virtual void stop_translation_timestep ();
 
 private:
@@ -43,15 +43,15 @@ Span_arpeggio_engraver::Span_arpeggio_engraver ()
 void
 Span_arpeggio_engraver::acknowledge_grob (Grob_info info)
 {
-    if (info.origin_trans_l_arr (this).size ()
-        && Arpeggio::has_interface (info.grob_l_))
+    if (info.origin_transes (this).size ()
+        && Arpeggio::has_interface (info.grob_))
     {
-      arpeggios_.push (info.grob_l_);
+      arpeggios_.push (info.grob_);
     }
 }
 
 void
-Span_arpeggio_engraver::create_grobs ()
+Span_arpeggio_engraver::process_acknowledged_grobs ()
 {
   /*
     connectArpeggios is slightly brusque; we should really read a elt
@@ -91,7 +91,7 @@ Span_arpeggio_engraver::stop_translation_timestep ()
            we can't kill the children, since we don't want to the
            previous note to bump into the span arpeggio; so we make
            it transparent.  */
-         arpeggios_[i]->set_grob_property ("molecule-callback", SCM_BOOL_T);
+         arpeggios_[i]->set_grob_property ("molecule-callback", SCM_EOL);
        }
       
       typeset_grob (span_arpeggio_);