]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/clef.cc
Release: bump Welcome versions.
[lilypond.git] / lily / clef.cc
index c38b899d00e0e443f018dd37db981efc44eb1967..6f9062190ef46f91b37ffbbc6b99f3cf01dd70f4 100644 (file)
@@ -28,7 +28,7 @@ MAKE_SCHEME_CALLBACK (Clef, calc_glyph_name, 1);
 SCM
 Clef::calc_glyph_name (SCM smob)
 {
-  Item *s = Item::unsmob (smob);
+  Item *s = unsmob<Item> (smob);
   SCM glyph = s->get_property ("glyph");
 
   if (scm_is_string (glyph))
@@ -53,7 +53,7 @@ MAKE_SCHEME_CALLBACK (Clef, print, 1)
 SCM
 Clef::print (SCM smob)
 {
-  Grob *me = Grob::unsmob (smob);
+  Grob *me = unsmob<Grob> (smob);
   SCM glyph_scm = me->get_property ("glyph-name");
   if (!scm_is_string (glyph_scm))
     return SCM_EOL;