]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/separating-line-group-engraver.cc
(get_paper_systems): uniq all_elements_ , to
[lilypond.git] / lily / separating-line-group-engraver.cc
index b50acd3143a46585bd577f9dc2c83734c509f68f..9eb889e14ca8f631afddd2d02930971c8e701377 100644 (file)
@@ -24,7 +24,7 @@
 struct Spacings
 {
   Item *staff_spacing_;
-  Link_array__Item_ note_spacings_;
+  vector<Item*> note_spacings_;
 
   Spacings ()
   {
@@ -123,7 +123,7 @@ Separating_line_group_engraver::acknowledge_item (Grob_info i)
       return;
     }
 
-  bool ib = Item::is_breakable (it);
+  bool ib = Item::is_non_musical (it);
   Item *&p_ref_ (ib ? break_item_
                 : musical_item_);
 
@@ -133,7 +133,7 @@ Separating_line_group_engraver::acknowledge_item (Grob_info i)
 
       if (ib)
        {
-         p_ref_->set_property ("breakable", SCM_BOOL_T);
+         p_ref_->set_property ("non-musical", SCM_BOOL_T);
          context ()->set_property ("breakableSeparationItem", p_ref_->self_scm ());
        }