Make Bundles work a bit better. A few include optimisations.
[ardour.git] / gtk2_ardour / canvas-flag.cc
index bd82b2d3f309e26e020ac5c2709b7faf6d7db30f..199f4d4054349d98e43379f129e166b62b13b16d 100644 (file)
@@ -24,7 +24,7 @@ CanvasFlag::set_text(string& a_text)
 {
        delete_allocated_objects();
        
-       _text = new InteractiveText(*this, 0.0, 0.0, Glib::ustring(a_text));
+       _text = new InteractiveText(*this, this, 0.0, 0.0, Glib::ustring(a_text));
        _text->property_justification() = Gtk::JUSTIFY_CENTER;
        _text->property_fill_color_rgba() = _outline_color_rgba;
        double flagwidth  = _text->property_text_width()  + 10.0;
@@ -34,7 +34,7 @@ CanvasFlag::set_text(string& a_text)
        _text->show();
        _line = new SimpleLine(*this, 0.0, 0.0, 0.0, _height);
        _line->property_color_rgba() = _outline_color_rgba;
-       _rect = new InteractiveRect(*this, 0.0, 0.0, flagwidth, flagheight);
+       _rect = new InteractiveRect(*this, this, 0.0, 0.0, flagwidth, flagheight);
        _rect->property_outline_color_rgba() = _outline_color_rgba;
        _rect->property_fill_color_rgba() = _fill_color_rgba;
        _text->raise_to_top();  
@@ -48,6 +48,5 @@ CanvasFlag::~CanvasFlag()
 bool
 CanvasFlag::on_event(GdkEvent* ev)
 {
-       cerr << "CanvasFlag::on_event(GdkEvent* ev)" << endl;
        return false;
 }