From: fred Date: Thu, 23 Jan 1997 21:54:43 +0000 (+0000) Subject: lilypond-0.0.24 X-Git-Tag: release/1.5.59~6388 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=62be0225f1034f1cb79cc2b7efdded6853f45f4d;p=lilypond.git lilypond-0.0.24 --- diff --git a/src/melodicstaff.cc b/src/melodicstaff.cc index b20e3a6bf2..e533fd3143 100644 --- a/src/melodicstaff.cc +++ b/src/melodicstaff.cc @@ -5,7 +5,7 @@ #include "notehead.hh" #include "paper.hh" #include "molecule.hh" -#include "linestaff.hh" +#include "linepstaff.hh" #include "rhythmstaff.hh" #include "sccol.hh" #include "localkeyitem.hh" @@ -17,7 +17,7 @@ const int NO_LINES=5; void Melodic_staff::set_output(PScore*ps) { - theline = new Linestaff(NO_LINES,ps); + theline_l_ = new Linestaff(NO_LINES,ps); // theline_l_ is added to pscore later. Simple_staff::set_output(ps); } diff --git a/src/rhythmstaff.cc b/src/rhythmstaff.cc index c78eedb256..5f5df7e361 100644 --- a/src/rhythmstaff.cc +++ b/src/rhythmstaff.cc @@ -3,7 +3,7 @@ #include "request.hh" #include "notehead.hh" #include "stem.hh" -#include "linestaff.hh" +#include "linepstaff.hh" #include "rhythmstaff.hh" #include "paper.hh" #include "sccol.hh" @@ -12,7 +12,7 @@ void Rhythmic_staff::set_output(PScore*ps) { - theline = new Linestaff(1,ps); + theline_l_ = new Linestaff(1,ps); Simple_staff::set_output(ps); }