]> git.donarmstrong.com Git - lilypond.git/commitdiff
* flower/direction.cc:
authorJan Nieuwenhuizen <janneke@gnu.org>
Sun, 22 Jan 2006 21:40:05 +0000 (21:40 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Sun, 22 Jan 2006 21:40:05 +0000 (21:40 +0000)
* flower/axis.cc: Unused.  Remove.

ChangeLog
flower/direction.cc [deleted file]

index 5de3dbbbaa231d2a73aa63d53bb7b713e86d475c..b6ca2e623ff641a4c3f7912e241389206185f088 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2006-01-22  Jan Nieuwenhuizen  <janneke@gnu.org>
 
-       * flower/axis.cc: Remove.
+       * flower/direction.cc: 
+       * flower/axis.cc: Unused.  Remove.
 
        * configure.in (--enable-std-string): New option.
 
diff --git a/flower/direction.cc b/flower/direction.cc
deleted file mode 100644 (file)
index 37ba42b..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
-  direction.cc --  implement Direction
-
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1998--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
-*/
-
-#include "direction.hh"
-
-#include "string.hh"
-
-String
-direction_string (Direction d, Axis a)
-{
-  String s ("center");
-  if (a == Y_AXIS)
-    s = (d == UP ? "up" : "down");
-  else if (a == X_AXIS)
-    s = (d == LEFT ? "left" : "right");
-  return s;
-}