]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.24
authorfred <fred>
Thu, 23 Jan 1997 21:54:43 +0000 (21:54 +0000)
committerfred <fred>
Thu, 23 Jan 1997 21:54:43 +0000 (21:54 +0000)
src/melodicstaff.cc
src/rhythmstaff.cc

index b20e3a6bf2375878d5a20cac4931f133da0556bc..e533fd3143b2b4431092f87bfb37f4d57374668a 100644 (file)
@@ -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);
 }
 
index c78eedb256c7cf2abfafda1f2b61d7833d38dd14..5f5df7e361751a11f0008210da99dec3f4058c0b 100644 (file)
@@ -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);
 }