]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dot-column.cc
release: 1.3.24
[lilypond.git] / lily / dot-column.cc
index 61d1c771f248dc675c01dd022e75de28c8195ffe..2e80a913bc1150ace6da548cb0c5043e38fcb204 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 ());
 }