]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.76
authorfred <fred>
Sun, 24 Mar 2002 19:48:12 +0000 (19:48 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:48:12 +0000 (19:48 +0000)
lily/dynamic-grav.cc
lily/staff-info.cc

index fea92a8b6a420062db922b1f1938e6efba436eb2..09673c240dc9d9a9580c436a8cf7f90eb1e33e98 100644 (file)
@@ -82,7 +82,7 @@ Dynamic_engraver::do_process_requests()
 
     if ( new_cresc_p ) {
        cresc_p_ = new_cresc_p;
-       cresc_p_->left_col_l_ = get_staff_info().musical_l()->pcol_l_;
+       cresc_p_->left_col_l_ = get_staff_info().musical_l();
        if (dynamic_p_) {
            cresc_p_->left_dyn_b_ = true;
        }
@@ -102,7 +102,7 @@ Dynamic_engraver::do_pre_move_processing()
        if (dynamic_p_)
            to_end_cresc_p_->right_dyn_b_=true;
        
-       to_end_cresc_p_->right_col_l_ = get_staff_info().musical_l()->pcol_l_;
+       to_end_cresc_p_->right_col_l_ = get_staff_info().musical_l();
        to_end_cresc_p_->set_staffsym(s_l);
        typeset_element(to_end_cresc_p_);
        to_end_cresc_p_ = 0;
index 250d3273d68a3706c2390d11887234cc99a2c1b7..615975807753b40cf708123adb7059394f742e39 100644 (file)
@@ -36,15 +36,17 @@ Staff_info::command_l()
 {
     return command_l_;
 }
+
 PCol*
 Staff_info::command_pcol_l()
 {
-    return command_l()->pcol_l_;
+    return command_l();
 }
+
 PCol*
 Staff_info::musical_pcol_l()
 {
-    return musical_l()->pcol_l_;
+    return musical_l();
 }
 
 Moment