don't queue a callback with the idle event for waveview image generation if one is...
[ardour.git] / libs / canvas / canvas / image.h
index fd86818c21e86cc1eef322c8215d8671a1bdb8c5..3e6f8209636cd776c4257655976ee6dfdc302f63 100644 (file)
@@ -35,7 +35,7 @@ class LIBCANVAS_API Image : public Item
 {
 public:
     Image (Canvas *, Cairo::Format, int width, int height);
-    Image (Group*, Cairo::Format, int width, int height);
+    Image (Item*, Cairo::Format, int width, int height);
     
     struct Data {
        Data (uint8_t *d, int w, int h, int s, Cairo::Format fmt)
@@ -97,7 +97,6 @@ private:
     Cairo::Format            _format;
     int                      _width;
     int                      _height;
-    int                      _data;
     mutable boost::shared_ptr<Data>  _current;
     boost::shared_ptr<Data>  _pending;
     mutable bool             _need_render;