From 4982a25860ae7403a40ae916dc9212504a7e87dd Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Sun, 22 Jan 2006 21:40:05 +0000 Subject: [PATCH] * flower/direction.cc: * flower/axis.cc: Unused. Remove. --- ChangeLog | 3 ++- flower/direction.cc | 22 ---------------------- 2 files changed, 2 insertions(+), 23 deletions(-) delete mode 100644 flower/direction.cc diff --git a/ChangeLog b/ChangeLog index 5de3dbbbaa..b6ca2e623f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2006-01-22 Jan Nieuwenhuizen - * 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 index 37ba42b6c1..0000000000 --- a/flower/direction.cc +++ /dev/null @@ -1,22 +0,0 @@ -/* - direction.cc -- implement Direction - - source file of the GNU LilyPond music typesetter - - (c) 1998--2006 Han-Wen Nienhuys -*/ - -#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; -} -- 2.39.5