From 5952c451266198b1da47498d1c653e9b18651da6 Mon Sep 17 00:00:00 2001 From: fred Date: Sat, 21 Dec 1996 01:38:53 +0000 Subject: [PATCH] lilypond-0.0.19 --- src/stcol.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/stcol.cc b/src/stcol.cc index abb27d17da..d4ba8cec33 100644 --- a/src/stcol.cc +++ b/src/stcol.cc @@ -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_; +} -- 2.39.5