X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fgrace-spacing-engraver.cc;h=57b934953933ff0ccf30fe40f3388086aae1d27c;hb=5d84bfad4626892bcffd05adcced53c8a2329047;hp=641c99c7d9a8caecb6cd583d9df2fd7f899e5230;hpb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;p=lilypond.git diff --git a/lily/grace-spacing-engraver.cc b/lily/grace-spacing-engraver.cc index 641c99c7d9..57b9349539 100644 --- a/lily/grace-spacing-engraver.cc +++ b/lily/grace-spacing-engraver.cc @@ -38,7 +38,8 @@ protected: void stop_translation_timestep (); }; -Grace_spacing_engraver::Grace_spacing_engraver () +Grace_spacing_engraver::Grace_spacing_engraver (Context *c) + : Engraver (c) { grace_spacing_ = 0; } @@ -54,7 +55,7 @@ Grace_spacing_engraver::process_music () if (grace_spacing_ && (now.grace_part_ || last_moment_.grace_part_)) { - Grob *column = Grob::unsmob (get_property ("currentMusicalColumn")); + Grob *column = unsmob (get_property ("currentMusicalColumn")); Pointer_group_interface::add_grob (grace_spacing_, ly_symbol2scm ("columns"), column); @@ -77,6 +78,12 @@ Grace_spacing_engraver::stop_translation_timestep () grace_spacing_ = 0; } +void +Grace_spacing_engraver::boot () +{ + +} + ADD_TRANSLATOR (Grace_spacing_engraver, "Bookkeeping of shortest starting and playing notes in grace" " note runs.",