]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/direction.cc
2003 -> 2004
[lilypond.git] / flower / direction.cc
index aeddc311a27d733bcbf7321fcd4dce837018d932..e5ab18e848581c5d3ea42b885d715c946f9e0c69 100644 (file)
@@ -3,19 +3,20 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "direction.hh"
+#include "string.hh"
 
 String
-direction_str (Direction d, Axis a)
+direction_string (Direction d, Axis a)
 {
-  String s("center");
+  String s ("center");
   if (a == Y_AXIS)
     {
-       s =( d == UP ? "up" : "down");
+       s = ( d == UP ? "up" : "down");
     }
   else if (a == X_AXIS)
     {