]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/clef.cc
*** empty log message ***
[lilypond.git] / lily / clef.cc
index d3855201147f737900e1cde1702b881fd634d9cb..7774d1920e7e2121991d1b3d40c34c534aa55226 100644 (file)
@@ -21,18 +21,18 @@ Clef::before_line_breaking (SCM smob)
 {
   Item *s = unsmob_item (smob);
 
-  SCM glyph = s->get_grob_property ("glyph-name");
+  SCM glyph = s->get_property ("glyph-name");
   
-  if (gh_string_p (glyph))
+  if (ly_c_string_p (glyph))
     {
       String str = ly_scm2string (glyph);
 
-      if (to_boolean (s->get_grob_property ("non-default"))
+      if (to_boolean (s->get_property ("non-default"))
          && s->break_status_dir () != RIGHT
-         && !to_boolean (s->get_grob_property ("full-size-change")))
+         && !to_boolean (s->get_property ("full-size-change")))
        {
          str += "_change";
-         s->set_grob_property ("glyph-name", scm_makfrom0str (str.to_str0 ()));          
+         s->set_property ("glyph-name", scm_makfrom0str (str.to_str0 ()));       
        }
     }
   else
@@ -52,8 +52,8 @@ SCM
 Clef::print (SCM smob) 
 {
   Grob *me = unsmob_grob (smob);
-  SCM glyph_scm = me->get_grob_property ("glyph-name");
-  if (!gh_string_p (glyph_scm))
+  SCM glyph_scm = me->get_property ("glyph-name");
+  if (!ly_c_string_p (glyph_scm))
     return SCM_EOL;
 
   String glyph = String (ly_scm2string (glyph_scm));