]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/music-wrapper.cc
(find_font): Add "lm" to try-AFM-first
[lilypond.git] / lily / music-wrapper.cc
index a30b03958d9e519523da7afda4ee9b6f81a5aa4b..a17a631039383001e0e3a71c5ed2c94f9db1a7b9 100644 (file)
@@ -3,24 +3,12 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
-
 #include "music-wrapper.hh"
 
-
-
-
-void
-Music_wrapper::transpose (Pitch p)
-{
-  if (element ())
-    element ()-> transpose (p);
-}
-
-
 Music_wrapper::Music_wrapper ()
   : Music ()
 {
@@ -32,24 +20,12 @@ Music_wrapper::get_length () const
   return element ()->get_length ();
 }
 
-Pitch
-Music_wrapper::to_relative_octave (Pitch p)
-{
-  return element ()->to_relative_octave (p);
-}
-
-
 Music*
 Music_wrapper::element () const
 {
-  return unsmob_music (get_mus_property ("element"));
+  return unsmob_music (get_property ("element"));
 }
 
-void
-Music_wrapper::compress (Moment m)
-{
-  element ()->compress (m);
-}
 
 ADD_MUSIC (Music_wrapper);