]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/directional-element-interface.cc
* mf/GNUmakefile: always trace pfa fonts.
[lilypond.git] / lily / directional-element-interface.cc
index daf19d91a5c7607c716bb7151f82fee406cad4bf..dec6d49ce3a52dde394cc5495dc21097d8a713d3 100644 (file)
@@ -15,7 +15,7 @@
 bool
 Directional_element_interface::has_interface (Grob*me) 
 {
-  return ly_dir_p (me->get_grob_property ("direction"));
+  return is_direction (me->get_grob_property ("direction"));
 }
 
 Direction
@@ -23,7 +23,7 @@ Directional_element_interface::get (Grob*me)
 {
   // return dir_;
   SCM d= me->get_grob_property ("direction");
-  if (!ly_dir_p (d))
+  if (!is_direction (d))
     return CENTER;
       
   return to_dir (d);