]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/cluster.cc
*** empty log message ***
[lilypond.git] / lily / cluster.cc
index 6dfea67e99d0c7a980a61df8611d6ea1811dc02a..794c42640b358a4eef97229158cf7f215f41f401 100644 (file)
@@ -19,7 +19,7 @@
 #include "lookup.hh"
 #include "box.hh"
 #include "interval.hh"
-#include "paper-def.hh"
+#include "output-def.hh"
 #include "warn.hh"
 
 
@@ -41,7 +41,7 @@ brew_cluster_piece (Grob *me, Array<Offset> bottom_points, Array<Offset> top_poi
   SCM shape_scm = me->get_property ("style");
   String shape;
 
-  if (is_symbol (shape_scm))
+  if (ly_c_symbol_p (shape_scm))
     {
       shape = ly_symbol2string (shape_scm);
     }
@@ -53,7 +53,7 @@ brew_cluster_piece (Grob *me, Array<Offset> bottom_points, Array<Offset> top_poi
     }
 
 
-  Stencil out = Stencil ();
+  Stencil out;
   Array<Offset> points;
   points.clear ();
   int size = bottom_points.size ();