Remove unused "mark" parameter from stop_touch() API
[ardour.git] / libs / canvas / container.cc
index 834e48196d6d3c8971dc482edc7c27e05286a14c..71085a8257828d1ae0e11bfd8997700242bddadf 100644 (file)
@@ -37,6 +37,12 @@ Container::Container (Item* parent, Duple const & p)
 {
 }
 
+void
+Container::prepare_for_render (Rect const & area) const
+{
+       Item::prepare_for_render_children (area);
+}
+
 void
 Container::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
 {
@@ -46,7 +52,7 @@ Container::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) con
 void
 Container::compute_bounding_box () const
 {
-       _bounding_box = boost::none;
+       _bounding_box = Rect ();
        add_child_bounding_boxes ();
        _bounding_box_dirty = false;
 }