X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fcanvas%2Fpixbuf.cc;h=5bb9e63d1eca9bf861fa070921b876180e0aa9a3;hb=c8c6bca6587450ff64303dbc994a4cd28d6ce7aa;hp=62d9357c61ddde4f93a67459beed0da8b516872d;hpb=f00b3b7f111e36537d773daef0ae77b03d11f82f;p=ardour.git diff --git a/libs/canvas/pixbuf.cc b/libs/canvas/pixbuf.cc index 62d9357c61..5bb9e63d1e 100644 --- a/libs/canvas/pixbuf.cc +++ b/libs/canvas/pixbuf.cc @@ -25,10 +25,14 @@ using namespace std; using namespace ArdourCanvas; -Pixbuf::Pixbuf (Group* g) - : Item (g) +Pixbuf::Pixbuf (Canvas* c) + : Item (c) +{ +} + +Pixbuf::Pixbuf (Item* parent) + : Item (parent) { - } void @@ -37,7 +41,7 @@ Pixbuf::render (Rect const & /*area*/, Cairo::RefPtr context) co Gdk::Cairo::set_source_pixbuf (context, _pixbuf, 0, 0); context->paint (); } - + void Pixbuf::compute_bounding_box () const { @@ -54,7 +58,7 @@ void Pixbuf::set (Glib::RefPtr pixbuf) { begin_change (); - + _pixbuf = pixbuf; _bounding_box_dirty = true;