]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/sustain-pedal.cc
Imported sources
[lilypond.git] / lily / sustain-pedal.cc
index 13b6aaa8ce4d6f385b32d92bb6bd66f706fadac6..30658d7bf386c6d3d4bdc2bc0d048ca0a1ba9364 100644 (file)
 
   Properties:
 
-  glyph -- text string (TODO: make one large glyph of the Ped symbol, removes need for member_brew_molecule ())
+  glyph -- text string (TODO: make one large glyph of the Ped symbol, removes need for member_print ())
 
 */
 
 struct Sustain_pedal
 {
 public:
-  DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM));
+  DECLARE_SCHEME_CALLBACK (print, (SCM));
 };
 
 
-MAKE_SCHEME_CALLBACK (Sustain_pedal,brew_molecule,1);
+MAKE_SCHEME_CALLBACK (Sustain_pedal,print,1);
 SCM
-Sustain_pedal::brew_molecule (SCM smob) 
+Sustain_pedal::print (SCM smob) 
 {
   Grob * e = unsmob_grob (smob);