X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpiano-pedal-bracket.cc;h=f6338ce8da724682d612815bc9ac444abc4a6704;hb=3fd5eabae695f90c0cea826bcea33d54a242b01b;hp=534d5812ec95c1c8cfaa88670a8f2fdda2e4e3cf;hpb=af60e9b57f205a3c2e044ac8db351b42ef3e26ad;p=lilypond.git diff --git a/lily/piano-pedal-bracket.cc b/lily/piano-pedal-bracket.cc index 534d5812ec..f6338ce8da 100644 --- a/lily/piano-pedal-bracket.cc +++ b/lily/piano-pedal-bracket.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2003--2012 Han-Wen Nienhuys + Copyright (C) 2003--2014 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,6 +21,7 @@ #include "spanner.hh" #include "item.hh" #include "tuplet-bracket.hh" +#include "axis-group-interface.hh" struct Piano_pedal_bracket { @@ -32,7 +33,7 @@ MAKE_SCHEME_CALLBACK (Piano_pedal_bracket, print, 1); SCM Piano_pedal_bracket::print (SCM smob) { - Spanner *me = dynamic_cast (unsmob_grob (smob)); + Spanner *me = dynamic_cast (Grob::unsmob (smob)); Spanner *orig = dynamic_cast (me->original ()); Drul_array broken (false, false); @@ -45,7 +46,7 @@ Piano_pedal_bracket::print (SCM smob) Grob *common = me->get_bound (LEFT) ->common_refpoint (me->get_bound (RIGHT), X_AXIS); - Grob *textbit = unsmob_grob (me->get_object ("pedal-text")); + Grob *textbit = Grob::unsmob (me->get_object ("pedal-text")); if (textbit) common = common->common_refpoint (textbit, X_AXIS); @@ -65,7 +66,8 @@ Piano_pedal_bracket::print (SCM smob) else flare[d] = 0.0; - span_points[d] = robust_relative_extent (b, common, X_AXIS)[RIGHT]; + span_points[d] + = Axis_group_interface::generic_bound_extent (b, common, X_AXIS)[RIGHT]; } else span_points[d] = b->relative_coordinate (common, X_AXIS);