]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tie.cc
* lily/dots.cc (print): replace -
[lilypond.git] / lily / tie.cc
index 855891f07d9acc51126d712d406a7bb6f6c35de1..edd482501ebf526623f3da2c17770e768aafabd9 100644 (file)
@@ -5,20 +5,20 @@
 
   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
-#include <math.h>
 
+#include "tie.hh"
+
+#include <math.h>
 
 #include "spanner.hh"
 #include "lookup.hh"
 #include "output-def.hh"
-#include "tie.hh"
 #include "rhythmic-head.hh"
 #include "bezier.hh"
 #include "paper-column.hh"
 #include "warn.hh"
 #include "staff-symbol-referencer.hh"
 #include "directional-element-interface.hh"
-#include "stencil.hh"
 #include "bezier.hh"
 #include "stem.hh"
 #include "note-head.hh"
@@ -313,7 +313,7 @@ Tie::get_control_points (SCM smob)
 
 
   SCM controls = SCM_EOL;
-  for (int i= 4; i--;)
+  for (int i = 4; i--;)
     controls = scm_cons (ly_offset2scm (b.control_[i]), controls);
   return controls;
 }
@@ -341,7 +341,7 @@ Tie::print (SCM smob)
 
   Bezier b;
   int i = 0;
-  for (SCM s= cp; s != SCM_EOL; s = scm_cdr (s))
+  for (SCM s = cp; s != SCM_EOL; s = scm_cdr (s))
     {
       b.control_[i] = ly_scm2offset (scm_car (s));
       i++;