X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fforbid-break-engraver.cc;h=f44d7bc27fca8656b43df95a881f0fe298a1cb90;hb=96e14d746b102f223acf6b6f4cdb8b0f0a11cd24;hp=1724ccd36c1f6305a68464302d73e1f421509761;hpb=623bfcf6b82ecfc9c4e9ff61b7b42fba3df962c8;p=lilypond.git diff --git a/lily/forbid-break-engraver.cc b/lily/forbid-break-engraver.cc index 1724ccd36c..f44d7bc27f 100644 --- a/lily/forbid-break-engraver.cc +++ b/lily/forbid-break-engraver.cc @@ -5,13 +5,13 @@ (c) 2002--_2005 Han-Wen Nienhuys */ -#include "rhythmic-head.hh" +#include "context.hh" +#include "duration.hh" +#include "engraver.hh" #include "grob.hh" -#include "score-engraver.hh" #include "input.hh" #include "pitch.hh" -#include "duration.hh" -#include "moment.hh" +#include "rhythmic-head.hh" #include "translator.icc" @@ -42,18 +42,22 @@ Forbid_line_break_engraver::start_translation_timestep () { Grob *g = unsmob_grob (scm_cdar (busy)); if (g->internal_has_interface (ly_symbol2scm ("rhythmic-grob-interface"))) - { - get_score_engraver ()->forbid_breaks (); - } + context ()->get_score_context ()->set_property ("forbidBreak", SCM_BOOL_T); busy = scm_cdr (busy); } } - ADD_TRANSLATOR (Forbid_line_break_engraver, - /* descr */ "Forbid line breaks when note heads " - "are still playing at some point.", - /* creats*/ "", - /* accepts */ "", - /* reads */ "busyGrobs", - /* write */ ""); + /* doc */ + "Forbid line breaks when note heads are still playing at some" + " point.", + + /* create */ + "", + + /* read */ + "busyGrobs ", + + /* write */ + "forbidBreak " + );