Update region_ops.txt to match current behaviour, and fix a couple of comments.
[ardour.git] / gtk2_ardour / imageframe_time_axis.cc
index b680dbda3a9f37d1de5bb76e3fc4c3df138173df..3b3d9bffde818e95cfdb4349afec6137110a2849 100644 (file)
@@ -67,7 +67,6 @@ ImageFrameTimeAxis::ImageFrameTimeAxis(const string & track_id, PublicEditor& ed
        selection_group->hide();
 
        // intialize our data items
-       _marked_for_display = true;
        y_position = -1 ;
 
        /* create our new image frame view */
@@ -82,7 +81,7 @@ ImageFrameTimeAxis::ImageFrameTimeAxis(const string & track_id, PublicEditor& ed
        // set the initial height of this time axis
        set_height(hNormal) ;
 
-       TimeAxisView::CatchDeletion.connect (*this, ui_bind (&ImageFrameTimeAxis::remove_time_axis_view, this, _1), gui_context());
+       TimeAxisView::CatchDeletion.connect (*this, boost::bind (&ImageFrameTimeAxis::remove_time_axis_view, this, _1), gui_context());
 }
 
 /**
@@ -139,7 +138,7 @@ ImageFrameTimeAxis::set_height (uint32_t h)
        }
 
        // tell those interested that we have had our height changed
-        gui_changed("track_height",(void*)0); /* EMIT_SIGNAL */
+       gui_changed("track_height",(void*)0); /* EMIT_SIGNAL */
 }
 
 /**