X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=blobdiff_plain;f=lily%2Fscript.cc;h=c680f73d9306061e5b64929eaa4c0bf71a765156;hb=07a5ed85c189a97d04c550679826dfc5eca2eb18;hp=7143a308af9ce4e07e52467e3f0f2f505371da7d;hpb=f7abba6f6ea0cbd6e41971f30f2c930e7ce0df42;p=lilypond.git diff --git a/lily/script.cc b/lily/script.cc index 7143a308af..c680f73d93 100644 --- a/lily/script.cc +++ b/lily/script.cc @@ -42,7 +42,7 @@ MAKE_SCHEME_CALLBACK(Script,after_line_breaking,1); SCM Script::after_line_breaking (SCM smob) { - Grob * me = unsmob_element (smob); + Grob * me = unsmob_grob (smob); Direction d = Side_position::get_direction (me); Side_position::set_direction (me,d); @@ -55,7 +55,7 @@ MAKE_SCHEME_CALLBACK(Script,brew_molecule,1); SCM Script::brew_molecule (SCM smob) { - Grob *me= unsmob_element (smob); + Grob *me= unsmob_grob (smob); #if 0 Direction dir = DOWN; SCM d = me->get_grob_property ("direction");