]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/axis.cc
(new_lyrics): \addlyrics -> \oldaddlyrics,
[lilypond.git] / flower / axis.cc
index 7b264c2da905c4156e408d619b1da1b3799f4263..d28657aabe0175e75649e48d813dbd0b68a4035b 100644 (file)
@@ -16,30 +16,3 @@ axis_name_string (Axis a)
   return to_string (char (a + 'x'));
 }
 
-
-Axis
-other_axis (Axis a)
-{
-  return a ==  Y_AXIS ? X_AXIS : Y_AXIS;
-}
-
-/*
-  TODO inline these.
- */
-Axis
-post_incr (Axis &a)
-{
-  assert (a < NO_AXES);
-  Axis b= a;
-  a = Axis (int (a) + 1);
-  return b;
-}
-
-Axis
-incr (Axis &a)
-{
-  assert (a < NO_AXES);
-  a = Axis (int (a) + 1);
-  return a;
-}
-