]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.10
authorfred <fred>
Sun, 17 Nov 1996 21:32:42 +0000 (21:32 +0000)
committerfred <fred>
Sun, 17 Nov 1996 21:32:42 +0000 (21:32 +0000)
hdr/pcol.hh

index fa9516edb4ec145fdf76229ac9791e44d3bc1c94..7cbf93f2ab2fa3e72dbaf4f9f39b11e381ff2623 100644 (file)
@@ -8,8 +8,8 @@
 
 /// stuff grouped vertically.
 struct PCol {
-    List<const Item*> its;
-    List<const Spanner*> stoppers, starters;
+    PointerList<const Item*> its;
+    PointerList<const Spanner*> stoppers, starters;
     
     /// Can this be broken? true eg. for bars. 
     bool breakable()const;
@@ -38,11 +38,11 @@ struct PCol {
     /// if lines are broken then this column x-coord #hpos#
     Real hpos;
 
-
+    
     /****************************************************************/
 
-    void add(Item*i);
-
+    void add(Item *i);
+    
     Interval width() const;
     ~PCol();
     PCol(PCol * parent);