]> git.donarmstrong.com Git - lilypond.git/commitdiff
* lily/slur-performer.cc (Slur_performer): add inits
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 2 Apr 2004 00:01:51 +0000 (00:01 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 2 Apr 2004 00:01:51 +0000 (00:01 +0000)
* lily/beam-performer.cc (Beam_performer): add inits

ChangeLog
input/screech-boink.ly
lily/beam-performer.cc
lily/slur-performer.cc

index f57c343f32aaae58027fa77141fa379f75653149..4f3c9629844deb0041975e060ce9ec0c97ab5c22 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-04-02  Han-Wen Nienhuys   <hanwen@xs4all.nl>
+
+       * lily/slur-performer.cc (Slur_performer): add inits
+
+       * lily/beam-performer.cc (Beam_performer): add inits
+
 2004-04-01  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
        * VERSION (PACKAGE_NAME): release 2.2.0
index 9102972f10a1c972d4528510e632e6f9883ceae9..31cbad7b7f3b3173d1d74e5ac9cf4426ee39eccc 100644 (file)
@@ -51,6 +51,7 @@
           >>
        }
     >>
+    \midi { \tempo 8 = 60 }
 
     \paper {
        raggedright = ##t 
@@ -61,5 +62,4 @@
        }
        
     }
-    \midi { \tempo 8 = 60 }
 }
index b5b694a04b052bb3308f91dc5a38fc5bf007564d..868397641fba0906c1576f070fd94971ce647a9f 100644 (file)
@@ -28,6 +28,13 @@ private:
   bool beam_;
 };
 
+Beam_performer::Beam_performer ()
+{
+  beam_ = false;
+  start_ev_ = 0;
+  now_stop_ev_ = 0;
+}
+
 void 
 Beam_performer::process_music ()
 {
@@ -83,7 +90,3 @@ Beam_performer::try_music (Music *m)
 ENTER_DESCRIPTION (Beam_performer,"","",
                  "beam-event","","","");
 
-Beam_performer::Beam_performer ()
-{
-  beam_ = false;
-}
index 020160708ca65b553d42ea06a5cecaeea4babe93..17c0a2dc2e49404cd81624f3e8581cf5b535dff4 100644 (file)
@@ -32,6 +32,14 @@ private:
   bool slur_;
 };
 
+Slur_performer::Slur_performer ()
+{
+  slur_ = false;
+  start_ev_ = 0;
+  now_stop_ev_ = 0;
+}
+
+
 void 
 Slur_performer::process_music ()
 {
@@ -85,7 +93,3 @@ Slur_performer::try_music (Music *m)
 ENTER_DESCRIPTION (Slur_performer,"","",
                  "slur-event","","","");
 
-Slur_performer::Slur_performer ()
-{
-  slur_ = false;
-}