X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fitem.cc;h=f90b29d30a78445c0789de622aadd1275d916ca3;hb=5d84bfad4626892bcffd05adcced53c8a2329047;hp=220176e55b8803fc64e4834309f2e49b354ead97;hpb=c054eb280fd9953596eb164f67b0f9d5555c5a32;p=lilypond.git diff --git a/lily/item.cc b/lily/item.cc index 220176e55b..f90b29d30a 100644 --- a/lily/item.cc +++ b/lily/item.cc @@ -224,7 +224,7 @@ Item::derived_mark () const } Interval -Item::pure_height (Grob *g, int start, int end) +Item::pure_y_extent (Grob *g, int start, int end) { if (cached_pure_height_valid_) return cached_pure_height_ + pure_relative_y_coordinate (g, start, end); @@ -232,7 +232,7 @@ Item::pure_height (Grob *g, int start, int end) assuming that Items' pure_heights do not depend on 'start' or 'end'. */ - cache_pure_height (Grob::pure_height (this, start, end)); + cache_pure_height (Grob::pure_y_extent (this, start, end)); return cached_pure_height_ + pure_relative_y_coordinate (g, start, end); }