]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/self-aligment-interface.cc
More message fixes and dutch translations.
[lilypond.git] / lily / self-aligment-interface.cc
index 175a02254733215279547cecf7b533661bc25ba0..9f986e7c7f78a206cdd7432074c22d7d83baaa63 100644 (file)
@@ -35,7 +35,7 @@ Self_alignment_interface::aligned_on_self (Grob *me, Axis a)
     {
       Interval ext (me->extent (me, a));
       if (ext.is_empty ())
-       programming_error (cannot align on self: empty element");
+       programming_error ("cannot align on self: empty element");
       else
        return scm_from_double (- ext.linear_combination (scm_to_double (align)));
     }
@@ -106,7 +106,7 @@ Self_alignment_interface::aligned_on_parent (Grob *me, Axis a)
 
   Interval ext (me->extent (me, a));
   if (ext.is_empty ())
-    programming_error (cannot align on self: empty element");
+    programming_error ("cannot align on self: empty element");
   else
     x -= ext.linear_combination (align);