]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dynamic-engraver.cc
patch::: 1.3.8.uu1
[lilypond.git] / lily / dynamic-engraver.cc
index 101837a9cba5861fc6ec1ae28ece7dced471ac9f..408fde144e29bf9eeb674b211d578b8bc14160c4 100644 (file)
@@ -113,7 +113,7 @@ Dynamic_engraver::do_process_requests()
          text_p_->set_elt_property ("style", gh_str02scm ("dynamic"));
          text_p_->set_elt_property ("script-priority",
                                     gh_int2scm (100));
-         Staff_sidify (text_p_).set_axis (Y_AXIS);
+         Side_position_interface (text_p_).set_axis (Y_AXIS);
 
          
          if (absd->get_direction ())
@@ -166,7 +166,7 @@ Dynamic_engraver::do_process_requests()
              new_cresc_p  = new Crescendo;
              new_cresc_p->grow_dir_ = (span_l->span_type_str_ == "crescendo")  ? BIGGER : SMALLER;
 
-             Staff_sidify (new_cresc_p).set_axis (Y_AXIS);
+             Side_position_interface (new_cresc_p).set_axis (Y_AXIS);
              announce_element (Score_element_info (new_cresc_p, span_l));
            }
        }
@@ -246,13 +246,13 @@ Dynamic_engraver::acknowledge_element (Score_element_info i)
       )
     {
       if (text_p_)
-       Staff_sidify (text_p_).add_support (i.elem_l_);
+       Side_position_interface (text_p_).add_support (i.elem_l_);
 
       if (to_end_cresc_p_)
-       Staff_sidify (to_end_cresc_p_).add_support (i.elem_l_);
+       Side_position_interface (to_end_cresc_p_).add_support (i.elem_l_);
 
       if (cresc_p_)
-       Staff_sidify(cresc_p_).add_support (i.elem_l_);
+       Side_position_interface(cresc_p_).add_support (i.elem_l_);
     }
 }