]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.19
authorfred <fred>
Sat, 21 Dec 1996 01:38:53 +0000 (01:38 +0000)
committerfred <fred>
Sat, 21 Dec 1996 01:38:53 +0000 (01:38 +0000)
src/stcol.cc

index abb27d17da8023f10fa396f634a546053c668ebf..d4ba8cec339589edd3bb5445d8c49f28684a279a 100644 (file)
@@ -1,6 +1,7 @@
 #include "stcol.hh"
 #include "sccol.hh"
 #include "voice.hh"
+#include "moment.hh"
 
 bool
 Staff_column::mus() const
@@ -25,7 +26,14 @@ Staff_column::add(Voice_element*ve)
     v_elts.add(ve);
 }
 
-Staff_column::Staff_column(Score_column*s) {
+Staff_column::Staff_column(Score_column*s)
+{
     score_column = s;
+    s_commands = 0;
+    moment_ = 0;
 }
 
+Staff_column::~Staff_column()
+{
+    delete moment_;
+}