]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/grob-array.hh
use classnames for interface naming; remove inclusion of
[lilypond.git] / lily / include / grob-array.hh
index f80c83632dd56d566f5082dc276db52a6f246290..e5cee3d10d1bc52499913ee66402e9099ea6651b 100644 (file)
@@ -18,7 +18,7 @@ class Grob_array
   vector<Grob*> grobs_;
   bool ordered_;
 
-  DECLARE_SIMPLE_SMOBS (Grob_array,);
+  DECLARE_SIMPLE_SMOBS (Grob_array);
 
   Grob_array ();
 public:
@@ -29,7 +29,7 @@ public:
   Grob *grob (vsize i) { return grobs_.at (i); }
   vsize size () const { return grobs_.size (); }
   bool empty () const;
-  void uniq ();
+  void remove_duplicates ();
   void clear ();
   void add (Grob *x) { grobs_.push_back (x); }
   void set_array (vector<Grob*> const &src);