]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/transposed-music.cc
release: 1.5.29
[lilypond.git] / lily / transposed-music.cc
index 74aa3006ec3b0a1f4c443226fd79b4fd9612a24d..86c9b84849016f070c276e12edacec7426f1a9da 100644 (file)
@@ -3,18 +3,16 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "transposed-music.hh"
 #include "debug.hh"
 
-Transposed_music::Transposed_music (Music *p, Pitch pit)
-  : Music_wrapper (p)
+Transposed_music::Transposed_music (SCM l)
+  : Music_wrapper (l)
 {
-  transpose_to_pitch_ = pit;
-  p->transpose (pit);
   set_mus_property ("type", ly_symbol2scm ("transposed-music"));
 }
 
@@ -25,5 +23,8 @@ Transposed_music::to_relative_octave (Pitch p)
   return p;
 }
 
+ADD_MUSIC (Transposed_music);
+Transposed_music::Transposed_music ()
+{
 
-
+}