remove no-op "horizontal_position_changed()" method from StreamView and RouteTimeAxisView
This commit is contained in:
parent
11619a37bf
commit
1c24a847dd
@ -233,7 +233,6 @@ RouteTimeAxisView::set_route (boost::shared_ptr<Route> rt)
|
||||
}
|
||||
|
||||
_editor.ZoomChanged.connect (sigc::mem_fun(*this, &RouteTimeAxisView::reset_samples_per_pixel));
|
||||
_editor.HorizontalPositionChanged.connect (sigc::mem_fun (*this, &RouteTimeAxisView::horizontal_position_changed));
|
||||
ColorsChanged.connect (sigc::mem_fun (*this, &RouteTimeAxisView::color_handler));
|
||||
|
||||
PropertyList* plist = new PropertyList();
|
||||
@ -895,14 +894,6 @@ RouteTimeAxisView::reset_samples_per_pixel ()
|
||||
set_samples_per_pixel (_editor.get_current_zoom());
|
||||
}
|
||||
|
||||
void
|
||||
RouteTimeAxisView::horizontal_position_changed ()
|
||||
{
|
||||
if (_view) {
|
||||
_view->horizontal_position_changed ();
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
RouteTimeAxisView::set_samples_per_pixel (double fpp)
|
||||
{
|
||||
|
@ -212,7 +212,6 @@ protected:
|
||||
virtual void label_view ();
|
||||
|
||||
void reset_samples_per_pixel ();
|
||||
void horizontal_position_changed ();
|
||||
|
||||
virtual void build_automation_action_menu (bool);
|
||||
virtual void append_extra_display_menu_items () {}
|
||||
|
@ -75,7 +75,6 @@ public:
|
||||
|
||||
virtual int set_samples_per_pixel (double);
|
||||
gdouble get_samples_per_pixel () const { return _samples_per_pixel; }
|
||||
virtual void horizontal_position_changed () {}
|
||||
|
||||
virtual void enter_internal_edit_mode ();
|
||||
virtual void leave_internal_edit_mode ();
|
||||
|
Loading…
Reference in New Issue
Block a user