X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpage-layout-problem-scheme.cc;h=68df82a9597830118d90748bd8b47b9886c5ec10;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=19be67cd2e6df2c41f965f60c25bf9ce44155366;hpb=d61cf3bbdb1c6670a127ba3baddf2f04d3e34fd3;p=lilypond.git diff --git a/lily/page-layout-problem-scheme.cc b/lily/page-layout-problem-scheme.cc index 19be67cd2e..68df82a959 100644 --- a/lily/page-layout-problem-scheme.cc +++ b/lily/page-layout-problem-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2011--2012 Joe Neeman + Copyright (C) 2011--2015 Joe Neeman LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -29,8 +29,8 @@ LY_DEFINE (ly_get_spacing_spec, "ly:get-spacing-spec", 2, 0, 0, LY_ASSERT_SMOB (Grob, from_scm, 1); LY_ASSERT_SMOB (Grob, to_scm, 2); - Grob *from = unsmob_grob (from_scm); - Grob *to = unsmob_grob (to_scm); + Grob *from = Grob::unsmob (from_scm); + Grob *to = Grob::unsmob (to_scm); return Page_layout_problem::get_spacing_spec (from, to, false, 0, 0); }