]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/audio-item.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / audio-item.cc
index 3cf2300827ebda38c1d0f868ce05eea3b1efb536..aedf9785dbf868709c74bee988c1ed0f6c02c7b0 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1997--2006 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include "audio-item.hh"
@@ -30,21 +30,20 @@ Audio_note::Audio_note (Pitch p, Moment m, int transposing_i)
 }
 
 void
-Audio_note::tie_to (Audio_notet)
+Audio_note::tie_to (Audio_note *t)
 {
   tied_ = t;
-  Audio_notefirst = t;
+  Audio_note *first = t;
   while (first->tied_)
     first = first->tied_;
   first->length_mom_ += length_mom_;
   length_mom_ = 0;
 }
 
-                   
 Audio_key::Audio_key (int acc, bool major)
 {
-  accidentals_=acc;
-  major_=major;
+  accidentals_ = acc;
+  major_ = major;
 }
 
 Audio_dynamic::Audio_dynamic (Real volume)