X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fitem-scheme.cc;h=48f3218f22951f11f218f8feffefcb42e22ef95d;hb=90e4d7057f3857da049dfda3d130017d4719bd6b;hp=24ccf5bf0de97ba6666751afa514b2e777392c73;hpb=ec074a41f03cf4cd3b914daa1359dd6e0fb2012d;p=lilypond.git diff --git a/lily/item-scheme.cc b/lily/item-scheme.cc index 24ccf5bf0d..48f3218f22 100644 --- a/lily/item-scheme.cc +++ b/lily/item-scheme.cc @@ -25,7 +25,7 @@ LY_DEFINE (ly_item_p, "ly:item?", 1, 0, 0, (SCM g), "Is @var{g} an @code{Item} object?") { - Grob *me = Grob::unsmob (g); + Grob *me = unsmob (g); bool b = dynamic_cast (me); return ly_bool2scm (b); } @@ -37,7 +37,7 @@ LY_DEFINE (ly_item_break_dir, "ly:item-break-dir", " @code{1}@tie{}beginning of line.") { LY_ASSERT_SMOB (Item, it, 1); - Item *me = Item::unsmob (it); + Item *me = unsmob (it); return scm_from_int (me->break_status_dir ()); } @@ -47,7 +47,7 @@ LY_DEFINE (ly_item_get_column, "ly:item-get-column", " associated with this @code{Item}.") { LY_ASSERT_SMOB (Item, it, 1); - Item *me = Item::unsmob (it); + Item *me = unsmob (it); if (Paper_column *col = me->get_column ()) return col->self_scm ();