X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fhara-kiri-engraver.cc;h=79fbd11f9d74f3d8442a6b043c7a1f5ffeed235f;hb=c8f35b49edadbef240fe3ad4931a6c9f526cc6d6;hp=39cc48a90bcbbd62d8144aac7833d4e64b5ee722;hpb=9f3572d98bb948c9689cd1f75401a029451fa001;p=lilypond.git diff --git a/lily/hara-kiri-engraver.cc b/lily/hara-kiri-engraver.cc index 39cc48a90b..79fbd11f9d 100644 --- a/lily/hara-kiri-engraver.cc +++ b/lily/hara-kiri-engraver.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2005--2006 Han-Wen Nienhuys + (c) 2005--2007 Han-Wen Nienhuys */ #include "axis-group-engraver.hh" @@ -23,7 +23,7 @@ protected: virtual Spanner *get_spanner (); DECLARE_ACKNOWLEDGER (grob); virtual void add_element (Grob *e); - void start_translation_timestep (); + void process_music (); virtual void derived_mark () const; SCM interesting_; public: @@ -43,9 +43,9 @@ Hara_kiri_engraver::derived_mark () const } void -Hara_kiri_engraver::start_translation_timestep () +Hara_kiri_engraver::process_music () { - Axis_group_engraver::start_translation_timestep (); + Axis_group_engraver::process_music (); interesting_ = get_property ("keepAliveInterfaces"); } @@ -82,7 +82,6 @@ ADD_TRANSLATOR (Hara_kiri_engraver, /* doc */ "Like Axis_group_engraver, but make a hara-kiri spanner, and add " "interesting items (ie. note heads, lyric syllables and normal rests) ", /* create */ "VerticalAxisGroup", - /* accept */ "", /* read */ "keepAliveInterfaces", /* write */ "");