]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/audio-item.cc
* scm/lily.scm (completize-formats): new function
[lilypond.git] / lily / audio-item.cc
index d72adbcc7d9011031e3a73f3fd0244e7b2d85338..cd1606114781dc12b3f9947a23533b4d112a1159 100644 (file)
@@ -7,6 +7,7 @@
 */
 
 #include "audio-item.hh"
+
 #include "midi-item.hh"
 #include "audio-column.hh"
 
@@ -42,8 +43,8 @@ Audio_note::tie_to (Audio_note* t)
                    
 Audio_key::Audio_key (int acc, bool major)
 {
-  accidentals_=acc;
-  major_=major;
+  accidentals_ = acc;
+  major_ = major;
 }
 
 Audio_dynamic::Audio_dynamic (Real volume)
@@ -68,21 +69,3 @@ Audio_text::Audio_text (Audio_text::Type type, String text_string)
   type_ = type;
 }
 
-Audio_tie::Audio_tie ()
-{
-  note_drul_[RIGHT] = 0;
-  note_drul_[LEFT] = 0;
-}
-
-void
-Audio_tie::set_note (Direction d, Audio_note* note)
-{
-  assert (!note_drul_[d]);
-  note_drul_[d] = note;
-  //set_bound (d, head);
-
-  //  add_dependency (head);
-}
-
-
-