]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/relative-octave-music.cc
release: 1.5.4
[lilypond.git] / lily / relative-octave-music.cc
index 2c7480bdc9ec76ba8823bcb78f404990da0932e0..3f69f920a081939d54bc63e6a2923c9aaf61440d 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 Pitch
 Relative_octave_music::to_relative_octave (Pitch)
 {
-  return last_pitch_;
+  return * unsmob_pitch (get_mus_property ("last-pitch"));
 }
 
 
-Relative_octave_music::Relative_octave_music(Music*p,Pitch def)
-  : Music_wrapper (p)
+Relative_octave_music::Relative_octave_music (SCM l)
+  : Music_wrapper (l)
 {
-  last_pitch_ = element ()->to_relative_octave (def);
   set_mus_property ("type", ly_symbol2scm ("relative-octave-music"));  
 }
 
+Relative_octave_music::Relative_octave_music ()
+{
+    set_mus_property ("type", ly_symbol2scm ("relative-octave-music"));
+}
 
-
+ADD_MUSIC (Relative_octave_music);