]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.35
authorfred <fred>
Sun, 24 Mar 2002 19:33:30 +0000 (19:33 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:33:30 +0000 (19:33 +0000)
src/staffwalker.cc
src/walkregs.cc [new file with mode: 0644]

index bba82e38b8b9cee36a37ceb27e8b2f80bba2a37c..c3900d35f21673e831c457643433d34840ac4e36 100644 (file)
@@ -10,8 +10,8 @@
 #include "staff.hh"
 #include "musicalrequest.hh"
 #include "staffwalker.hh"
-#include "stcol.hh"
-#include "sccol.hh"
+#include "staffcolumn.hh"
+#include "scorecolumn.hh"
 #include "debug.hh"
 #include "timedescription.hh"
 #include "commandrequest.hh"
@@ -69,7 +69,7 @@ Staff_walker::process_timing_reqs()
        } else if (tr_l->barcheck() && time_.whole_in_measure_) {
            warning( "Barcheck failed", tr_l->defined_ch_c_l_ );
        } else if (tr_l->cadenza()) {
-           time_.set_cadenza(tr_l->cadenza()->on_b);
+           time_.set_cadenza(tr_l->cadenza()->on_b_);
        } else if (tr_l->measuregrouping()) {
            *default_grouping = parse_grouping(
                tr_l->measuregrouping()->beat_i_arr_,
diff --git a/src/walkregs.cc b/src/walkregs.cc
new file mode 100644 (file)
index 0000000..4381688
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+  walkregs.cc -- implement Walker_registers
+
+  source file of the LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+#include "clefreg.hh"
+#include "localkeyreg.hh"
+#include "keyreg.hh"
+#include "meterreg.hh"
+#include "barreg.hh"
+#include "walkregs.hh"
+
+Walker_registers::Walker_registers(Complex_walker *w)
+{
+    add( new Bar_register(w));
+    add( new Meter_register(w));
+    add( new Clef_register(w));
+    add( new Key_register(w));
+    add( new Local_key_register(w));
+}