]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/axis-group-interface.cc
(music_property_def): oops. SCM_UNDEFINED
[lilypond.git] / lily / axis-group-interface.cc
index 3758ee9abb8e8d6b24d86966e503b09ea645fa9b..65c05ad1f9378cfd563074b1709106a2cb5b2efb 100644 (file)
@@ -26,15 +26,15 @@ Axis_group_interface::add_element (Grob*me,Grob *e)
 }
 
 bool
-Axis_group_interface::axis_b (Grob*me,Axis a)
+Axis_group_interface::has_axis (Grob*me,Axis a)
 {
   /*
     urg. FIXME, check for Hara_kiri_group_spanner shouldn't be necessary?
 
     
    */
-  return me->has_extent_callback_b (group_extent_callback_proc, a) ||
- (me->has_extent_callback_b (Hara_kiri_group_spanner::y_extent_proc, a));
+  return me->has_extent_callback (group_extent_callback_proc, a) ||
+ (me->has_extent_callback (Hara_kiri_group_spanner::y_extent_proc, a));
 }
 
 Interval
@@ -93,9 +93,9 @@ Axis_group_interface::set_axes (Grob*me,Axis a1, Axis a2)
   /*
     why so convoluted ? (fixme/documentme?) 
    */
-  if (me->has_extent_callback_b (Grob::stencil_extent_proc, a1))
+  if (me->has_extent_callback (Grob::stencil_extent_proc, a1))
     me->set_extent (Axis_group_interface::group_extent_callback_proc,a1);
-  if (me->has_extent_callback_b (Grob::stencil_extent_proc, a2))
+  if (me->has_extent_callback (Grob::stencil_extent_proc, a2))
     me->set_extent (Axis_group_interface::group_extent_callback_proc,a2);
 }
 
@@ -121,5 +121,5 @@ Axis_group_interface::get_children (Grob*me)
 
 
 ADD_INTERFACE (Axis_group_interface, "axis-group-interface",
-  "a group of coupled grobs",
+  "An object that groups other layout objects.",
   "axes");