]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-column.cc
Merge branch 'issue4032'
[lilypond.git] / lily / note-column.cc
index 28a0b13d77e0a0c808054245a0cc7e2e715dbd44..c5d06cfb6831a6bd678c27289132a0120129c349 100644 (file)
@@ -61,7 +61,7 @@ Item *
 Note_column::get_stem (Grob *me)
 {
   SCM s = me->get_object ("stem");
-  return unsmob_item (s);
+  return Item::unsmob (s);
 }
 
 Item *
@@ -71,7 +71,7 @@ Note_column::get_flag (Grob *me)
   if (stem)
     {
       SCM s = stem->get_object ("flag");
-      return unsmob_item (s);
+      return Item::unsmob (s);
     }
   return 0;
 }