X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fitem-scheme.cc;h=0887ac3d9af71a7f60577bb23667d8a98e76318e;hb=e8b68d8a878a0ee0381719230cf911dbcefa168d;hp=bd612efdee551e47bd0073b77962c4b5da0e7592;hpb=f93e4199873c91ae32f0e84a610d14853dc379df;p=lilypond.git diff --git a/lily/item-scheme.cc b/lily/item-scheme.cc index bd612efdee..0887ac3d9a 100644 --- a/lily/item-scheme.cc +++ b/lily/item-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2005--2011 Han-Wen Nienhuys + Copyright (C) 2005--2014 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify @@ -24,18 +24,18 @@ LY_DEFINE (ly_item_p, "ly:item?", 1, 0, 0, (SCM g), "Is @var{g} an @code{Item} object?") { - Grob *me = unsmob_grob (g); + Grob *me = Grob::unsmob (g); bool b = dynamic_cast (me); return ly_bool2scm (b); } LY_DEFINE (ly_item_break_dir, "ly:item-break-dir", 1, 0, 0, (SCM it), - "The break status direction of item @var{it}. @code{-1} means" + "The break status direction of item @var{it}. @w{@code{-1}} means" " end of line, @code{0}@tie{}unbroken, and" " @code{1}@tie{}beginning of line.") { - LY_ASSERT_TYPE (unsmob_item, it, 1); - Item *me = unsmob_item (it); + LY_ASSERT_TYPE (Item::unsmob, it, 1); + Item *me = Item::unsmob (it); return scm_from_int (me->break_status_dir ()); }