]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grace-music.cc
vim/indent/lilypond.vim: new file.
[lilypond.git] / lily / grace-music.cc
index 08fc36616fe43b0b2fc1a5ee08f835472a78e123..39e396a2dae7ddb5666284f3718871dd55518703 100644 (file)
@@ -3,23 +3,19 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "grace-music.hh"
 #include "grace-iterator.hh"
 
-void
-Grace_music::compress (Moment m) 
-{
-  Music_wrapper::compress (m); 
-}
+
 
 Moment
-Grace_music::length_mom () const
+Grace_music::get_length () const
 {
-  Moment m ;
+  Moment m;
   return m;
 }
 
@@ -27,7 +23,7 @@ Grace_music::length_mom () const
 Moment
 Grace_music::start_mom () const
 {
-  Moment l = Music_wrapper::length_mom ();
+  Moment l = Music_wrapper::get_length ();
   Moment gl;
   gl.grace_part_ = -(l.main_part_ + l.grace_part_ );
   return gl;
@@ -35,7 +31,7 @@ Grace_music::start_mom () const
 
 Grace_music::Grace_music ()
 {
-  set_mus_property ("iterator-ctor",
+  set_property ("iterator-ctor",
                    Grace_iterator::constructor_proc);
 }