]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dot-column.cc
patch::: 1.3.33.jcn3
[lilypond.git] / lily / dot-column.cc
index 61d1c771f248dc675c01dd022e75de28c8195ffe..d9331f89074bc6dddcfc3ded34995ebde9a4ad3e 100644 (file)
@@ -12,6 +12,7 @@
 #include "group-interface.hh"
 #include "staff-symbol-referencer.hh"
 #include "directional-element-interface.hh"
+#include "side-position-interface.hh"
 
 void
 Dot_column::add_dots (Dots *d)
@@ -29,7 +30,7 @@ Dot_column::add_head (Rhythmic_head *r)
   if (!r->dots_l ())
     return ;
 
-  add_support (r);
+  side_position (this).add_support (r);
   add_dots (r->dots_l ());
 }
 
@@ -39,7 +40,6 @@ Dot_column::compare (Dots * const &d1, Dots * const &d2)
 {
   Staff_symbol_referencer_interface s1(d1);
   Staff_symbol_referencer_interface s2(d2);  
-
   
   return int (s1.position_f () - s2.position_f ());
 }
@@ -70,7 +70,7 @@ Dot_column::Dot_column ()
    Should be smarter.
  */
 void
-Dot_column::do_post_processing ()
+Dot_column::after_line_breaking ()
 {
   Link_array<Dots> dots = Group_interface__extract_elements (this, (Dots*)0 , "dots"); 
   dots.sort (Dot_column::compare);