]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.51
authorfred <fred>
Sun, 24 Mar 2002 19:39:12 +0000 (19:39 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:39:12 +0000 (19:39 +0000)
.version
lily/note-column-reg.cc
lily/note-column.cc
lily/register-group.cc

index 3434710ebe66572bb0d9b8434c383722ea35dab7..0e2c17ca28d7d73fd9254db74ecebb3d3230a5a0 100644 (file)
--- a/.version
+++ b/.version
@@ -1,6 +1,6 @@
 TOPLEVEL_MAJOR_VERSION = 0
 TOPLEVEL_MINOR_VERSION = 0
-TOPLEVEL_PATCH_LEVEL = 50
+TOPLEVEL_PATCH_LEVEL = 51
 # use to send patches, always empty for released version:
 # include separator: ".postfix", "-pl" makes rpm barf
 
index 1263ca1c6a7f4613c3d5d8bed5b87b420d32455f..d76baf235d677a94c6ba241efe9f714baf6b62f8 100644 (file)
@@ -26,9 +26,10 @@ Note_column_register::acknowledge_element(Staff_elem_info i)
     if (!acceptable_elem_b(i.elem_l_))
        return;
 
-    if (!ncol_p_)
+    if (!ncol_p_){
        ncol_p_ = new Note_column;
-
+       announce_element(Staff_elem_info(ncol_p_, 0));
+    }
     char const*nC = i.elem_l_->name();
 
     if (nC == Script::static_name())
index f71d61ba141381a52819e95af68c86d80732ed6d..4bb2f1d5e6f803729748146f0f935a9bed703f08 100644 (file)
@@ -114,7 +114,7 @@ Note_column::do_pre_processing()
     Item *support_l=top_head_l;
     int j;
     for (j = 0; j < 2; j++ ) {
-       for (int i=0; i < placed_l_arr_a[j].size(); j++) {
+       for (int i=0; i < placed_l_arr_a[j].size(); i++) {
            placed_l_arr_a[j][i]->add_support(support_l);
            support_l = placed_l_arr_a[j][i];
        }
index a7573332007163f0bba98f4bf95a94b4c7ebbc7b..9400bbc87a66bf4aa1b173f1903c9688fa69a911 100644 (file)
@@ -58,7 +58,7 @@ void
 Register_group_register::acknowledge_element(Staff_elem_info info)
 {
     Request_register* origin = info.origin_reg_l_arr_[0];
-    if (!contains_b(origin) && !origin->contains_b(this))
+    if (!contains_b(origin) && !origin->contains_b(this)) // am i sure?
        return;
     
     for (iter_top(reg_list_, i); i.ok(); i++)