X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fperformer.cc;h=6a949311a1255046eb20922743047d2d4c199c6e;hb=6f5b694886301a2facf7293d9f70cf41232103a6;hp=5fe1d649165b0b8484b8d2a12c06f4663b1633a9;hpb=675533acf58b9b863adc830f175696735ca6dc95;p=lilypond.git diff --git a/lily/performer.cc b/lily/performer.cc index 5fe1d64916..6a949311a1 100644 --- a/lily/performer.cc +++ b/lily/performer.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1996--2002 Han-Wen Nienhuys + (c) 1996--2003 Han-Wen Nienhuys Jan Nieuwenhuizen */ @@ -14,20 +14,20 @@ void Performer::play_element (Audio_element* p) { - daddy_perf_l ()->play_element (p); + get_daddy_perf ()->play_element (p); } int -Performer::get_tempo_i () const +Performer::get_tempo () const { - return daddy_perf_l ()->get_tempo_i (); + return get_daddy_perf ()->get_tempo (); } Performer_group_performer* -Performer::daddy_perf_l () const +Performer::get_daddy_perf () const { - return (daddy_trans_l_) - ?dynamic_cast (daddy_trans_l_) + return (daddy_trans_) + ?dynamic_cast (daddy_trans_) : 0; } @@ -45,7 +45,7 @@ Performer::create_audio_elements () void Performer::announce_element (Audio_element_info i) { - if (!i.origin_trans_l_) - i.origin_trans_l_= this; - daddy_perf_l ()->announce_element (i); + if (!i.origin_trans_) + i.origin_trans_= this; + get_daddy_perf ()->announce_element (i); }