From 199702cda64769aa1ec08cb0d6ae8316fdd7e7fb Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 15 Dec 2025 12:05:54 -0700 Subject: [PATCH] AxisView::name() is supposed to be public, so make it so for TimeAxisView --- gtk2_ardour/time_axis_view.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/time_axis_view.h b/gtk2_ardour/time_axis_view.h index 3c0ce245fa..609408c3fa 100644 --- a/gtk2_ardour/time_axis_view.h +++ b/gtk2_ardour/time_axis_view.h @@ -106,6 +106,8 @@ public: TimeAxisView(ARDOUR::Session* sess, PublicEditor& ed, TimeAxisView* parent, ArdourCanvas::Canvas& canvas); virtual ~TimeAxisView (); + std::string name () const { return name_label.get_text (); } + static PBD::Signal CatchDeletion; static void setup_sizes (); @@ -267,7 +269,6 @@ protected: void begin_name_edit (); void end_name_edit (std::string, int); - virtual std::string name () const { return name_label.get_text (); } /* derived classes can override these */