From: Jan Nieuwenhuizen Date: Sun, 22 Jan 2006 21:40:05 +0000 (+0000) Subject: * flower/direction.cc: X-Git-Tag: release/2.7.29~37 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4982a25860ae7403a40ae916dc9212504a7e87dd;p=lilypond.git * flower/direction.cc: * flower/axis.cc: Unused. Remove. --- 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; -}