]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/side-position-interface.cc
* mf/GNUmakefile: always trace pfa fonts.
[lilypond.git] / lily / side-position-interface.cc
index e14def2696e02756bbb17805645e3bc53dd905c6..103593b686c95be0bf6a7e80b69e5460209bfcea 100644 (file)
@@ -28,12 +28,12 @@ Direction
 Side_position_interface::get_direction (Grob*me)
 {
   SCM d = me->get_grob_property ("direction");
-  if (ly_dir_p (d) && to_dir (d))
+  if (is_direction (d) && to_dir (d))
     return to_dir (d);
 
   Direction relative_dir = Direction (1);
   SCM reldir = me->get_grob_property ("side-relative-direction");      // should use a lambda.
-  if (ly_dir_p (reldir))
+  if (is_direction (reldir))
     {
       relative_dir = to_dir (reldir);
     }