summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/time_axis_view.h')
-rw-r--r--gtk2_ardour/time_axis_view.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/gtk2_ardour/time_axis_view.h b/gtk2_ardour/time_axis_view.h
index fde5bf0b34..8e7d6f394a 100644
--- a/gtk2_ardour/time_axis_view.h
+++ b/gtk2_ardour/time_axis_view.h
@@ -136,9 +136,6 @@ class TimeAxisView : public virtual AxisView, public PBD::Stateful
bool touched (double top, double bot);
- /** Hide this TrackView */
- virtual void hide ();
-
/** @return true if hidden, otherwise false */
bool hidden () const { return _hidden; }
@@ -201,10 +198,6 @@ class TimeAxisView : public virtual AxisView, public PBD::Stateful
void set_parent (TimeAxisView& p);
bool has_state () const;
- /* call this on the parent */
-
- virtual XMLNode* get_automation_child_xml_node (Evoral::Parameter) { return 0; }
-
virtual LayerDisplay layer_display () const { return Overlaid; }
virtual StreamView* view () const { return 0; }
@@ -286,6 +279,9 @@ class TimeAxisView : public virtual AxisView, public PBD::Stateful
void remove_child (boost::shared_ptr<TimeAxisView>);
void add_child (boost::shared_ptr<TimeAxisView>);
+ virtual void hide ();
+ virtual void show ();
+
/* selection display */
ArdourCanvas::Group *selection_group;