]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/relative-octave-music.cc
patch::: 1.3.108.jcn3
[lilypond.git] / lily / relative-octave-music.cc
index 7f66ab6a6b8b8a51d5ecf8d91da5c19cf8ad0643..2c7480bdc9ec76ba8823bcb78f404990da0932e0 100644 (file)
@@ -3,31 +3,26 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "relative-music.hh"
 #include "debug.hh"
 
-Musical_pitch
-Relative_octave_music::to_relative_octave (Musical_pitch)
+Pitch
+Relative_octave_music::to_relative_octave (Pitch)
 {
   return last_pitch_;
 }
 
 
-Relative_octave_music::Relative_octave_music(Music*p,Musical_pitch def)
+Relative_octave_music::Relative_octave_music(Music*p,Pitch def)
   : Music_wrapper (p)
 {
-  last_pitch_ = element_l()->to_relative_octave (def);
+  last_pitch_ = element ()->to_relative_octave (def);
+  set_mus_property ("type", ly_symbol2scm ("relative-octave-music"));  
 }
 
-void
-Relative_octave_music::do_print () const
-{
-  Music_wrapper::do_print ();
-  DOUT << "default pitch: " << last_pitch_.str ();
-}