AxisView::name() is supposed to be public, so make it so for TimeAxisView

This commit is contained in:
Paul Davis 2025-12-15 12:05:54 -07:00
parent c0846d876f
commit 199702cda6

View file

@ -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<void(TimeAxisView*)> 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 */