]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/part-combine-engraver.cc
* scripts/lilypond-book.py (Lilypond_snippet.is_outdated): require
[lilypond.git] / lily / part-combine-engraver.cc
index c5216f5544d8fa469718b23f286f3585b6cf5921..a941876ef3f798aceacea6a3f2e2e8716ca63131 100644 (file)
@@ -19,7 +19,7 @@
 
 class Part_combine_engraver : public Engraver
 {
-  TRANSLATOR_DECLARATIONS(Part_combine_engraver);
+  TRANSLATOR_DECLARATIONS (Part_combine_engraver);
 
 protected:
   virtual void acknowledge_grob (Grob_info);
@@ -50,7 +50,7 @@ Part_combine_engraver::process_music ()
   if (event_
       && to_boolean (get_property ("soloADue")))
     {
-      SCM what = event_->get_mus_property ("part-combine-status");
+      SCM what = event_->get_property ("part-combine-status");
       SCM text = SCM_EOL;
       if (what == ly_symbol2scm ("solo1"))
        text = get_property ("soloText");
@@ -62,7 +62,7 @@ Part_combine_engraver::process_music ()
       if (Text_item::markup_p (text))
        {
          text_ =  make_item ("CombineTextScript");
-         text_->set_grob_property ("text", text);
+         text_->set_property ("text", text);
          announce_grob (text_, event_->self_scm ());
        }
     }
@@ -99,7 +99,7 @@ Part_combine_engraver::stop_translation_timestep ()
   event_ = 0;
 }
 
-ENTER_DESCRIPTION(Part_combine_engraver,
+ENTER_DESCRIPTION (Part_combine_engraver,
 /* descr */       "Part combine engraver for orchestral scores:                "
                  "Print markings a2, Solo, Solo II, and unisono ",
 /* creats*/       "CombineTextScript",