]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/volta-spanner.cc
release: 1.3.54
[lilypond.git] / lily / volta-spanner.cc
index ad7f9aa3014c3c7933a9ea8a099c9335d6cfd571..d4604f151a124d47ba85dfb1592da3c2918bd9a3 100644 (file)
@@ -25,7 +25,7 @@
 Volta_spanner::Volta_spanner ()
 {
   set_elt_property ("bars", SCM_EOL);
-  side_position (this).set_axis (Y_AXIS);
+  Side_position_interface (this).set_axis (Y_AXIS);
   directional_element (this).set (UP);
 }
 
@@ -112,7 +112,7 @@ Volta_spanner::do_add_processing ()
 void
 Volta_spanner::after_line_breaking ()
 {
-  side_position (this).add_staff_support ();
+  Side_position_interface (this).add_staff_support ();
 }
   
 void
@@ -121,13 +121,13 @@ Volta_spanner::add_bar  (Bar* b)
   Group_interface gi(this, "bars");
   gi.add_element (b);
 
-  side_position (this).add_support (b);
+  Side_position_interface (this).add_support (b);
   add_dependency (b);
 }
 
 void
 Volta_spanner::add_column (Note_column* c)
 {
-  side_position (this).add_support (c);
+  Side_position_interface (this).add_support (c);
   add_dependency (c);
 }