]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/item-scheme.cc
Replace remaining uses of unsmob_xxx with Xxx::unsmob
[lilypond.git] / lily / item-scheme.cc
index 0f9a29f9bd71992abaf5a738c7011e783a232fca..0887ac3d9af71a7f60577bb23667d8a98e76318e 100644 (file)
@@ -35,7 +35,7 @@ LY_DEFINE (ly_item_break_dir, "ly:item-break-dir",
            " 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 ());
 }