]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/text-item.cc
patch::: 1.3.85.jcn3
[lilypond.git] / lily / text-item.cc
index 84a006243daf7f0a90053dc2a229d6c247f48031..4a576ac7c2a503254b7cb1bf95302b5380f40c11 100644 (file)
@@ -1,5 +1,5 @@
 /*   
-  text-item.cc -- implement Item
+  text-item.cc -- implement Text_item
 
   source file of the GNU LilyPond music typesetter
   
@@ -19,7 +19,7 @@ struct Text_item
 };
 
 
-MAKE_SCHEME_SCORE_ELEMENT_CALLBACK(Text_item,brew_molecule)
+MAKE_SCHEME_CALLBACK(Text_item,brew_molecule)
 
 SCM 
 Text_item::brew_molecule (SCM sm) 
@@ -39,7 +39,7 @@ Text_item::brew_molecule (SCM sm)
       Molecule m;
       m.set_empty (false);
       mol.add_at_edge (X_AXIS, RIGHT, m, gh_scm2double (space)*
-                      Staff_symbol_referencer_interface (s).staff_space ());
+                      Staff_symbol_referencer::staff_space (s));
     }
   return mol.create_scheme (); 
 }