]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/span-arpeggio-engraver.cc
* lily/include/my-lily-parser.hh: rename My_lily -> Lily
[lilypond.git] / lily / span-arpeggio-engraver.cc
index 0b473fe5df73db7258356b66dafc98b24f87426b..50c7be72c83fc74bfb5cfab9187d6e33db0358fe 100644 (file)
@@ -65,8 +65,8 @@ Span_arpeggio_engraver::process_acknowledged_grobs ()
   if (!span_arpeggio_ && arpeggios_.size () > 1
       && to_boolean (get_property ("connectArpeggios")))
     {
-      span_arpeggio_ = make_item ("Arpeggio");
-      announce_grob (span_arpeggio_, SCM_EOL);      
+      span_arpeggio_ = make_item ("Arpeggio", SCM_EOL);
+            
     }
 }
 
@@ -82,10 +82,10 @@ Span_arpeggio_engraver::stop_translation_timestep ()
       for (int i=0; i < arpeggios_.size (); i ++)
        {
          for (SCM s = arpeggios_[i]->get_property ("stems");
-              ly_pair_p (s); s = ly_cdr (s))
+              ly_c_pair_p (s); s = ly_cdr (s))
            Group_interface::add_thing (span_arpeggio_, ly_symbol2scm ("stems"), ly_car (s));
          for (SCM s = arpeggios_[i]->get_property ("side-support-elements");
-              ly_pair_p (s); s = ly_cdr (s))
+              ly_c_pair_p (s); s = ly_cdr (s))
            Group_interface::add_thing (span_arpeggio_, ly_symbol2scm ("side-support-elements"), ly_car (s));
 
          /*
@@ -95,7 +95,6 @@ Span_arpeggio_engraver::stop_translation_timestep ()
          arpeggios_[i]->set_property ("print-function", SCM_EOL);
        }
       
-      typeset_grob (span_arpeggio_);
       span_arpeggio_ = 0;
     }
   arpeggios_.clear ();