From 31fe3a5d5a3446cb315e45f7a754d30abbd28332 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 24 Oct 2011 19:40:58 +0000 Subject: [PATCH] Expose set_path so that the Session can alter it. git-svn-id: svn://localhost/ardour2/branches/3.0@10297 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/file_source.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/ardour/ardour/file_source.h b/libs/ardour/ardour/file_source.h index c757b2877c..291b3a3d76 100644 --- a/libs/ardour/ardour/file_source.h +++ b/libs/ardour/ardour/file_source.h @@ -76,6 +76,8 @@ public: const std::string& origin() const { return _origin; } + virtual void set_path (const std::string&); + static PBD::Signal3 > AmbiguousFileName; protected: @@ -88,7 +90,6 @@ protected: virtual int init (const std::string& idstr, bool must_exist); - virtual void set_path (const std::string&); virtual int move_dependents_to_trash() { return 0; } void set_within_session_from_path (const std::string&);