]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/direction.cc
* flower
[lilypond.git] / flower / direction.cc
index fc543b51bbbb0f46582bf2f851e7860a279d3959..71e700893eaffc35774e8083a6eb725fb39b2825 100644 (file)
@@ -1,11 +1,10 @@
-/*   
+/*
   direction.cc --  implement Direction
-  
+
   source file of the GNU LilyPond music typesetter
-  
+
   (c) 1998--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+*/
 
 #include "direction.hh"
 
@@ -17,11 +16,11 @@ direction_string (Direction d, Axis a)
   String s ("center");
   if (a == Y_AXIS)
     {
-       s = ( d == UP ? "up" : "down");
+      s = (d == UP ? "up" : "down");
     }
   else if (a == X_AXIS)
     {
-      s = (d == LEFT ? "left" : "right" );
+      s = (d == LEFT ? "left" : "right");
     }
   return s;
 }