Repeat INSENSITIVE colors instead of relying on inheritance
[ardour.git] / libs / canvas / canvas / poly_item.h
index ab68204ff07a2fbd0fbe61ad00d5450cbab7ca46..311ca80933f1b91aeb7f0ccb5d2146d89a1cd183 100644 (file)
@@ -30,9 +30,9 @@ class LIBCANVAS_API PolyItem : public Item
 {
 public:
        PolyItem (Canvas*);
-       PolyItem (Group*);
+       PolyItem (Item*);
 
-       void compute_bounding_box () const;
+       virtual void compute_bounding_box () const;
 
        virtual void set (Points const &);
        Points const & get () const;
@@ -45,7 +45,7 @@ protected:
 
        Points _points;
 };
-       
+
 }
 
 #endif