summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/filesystem_paths.h2
-rw-r--r--libs/ardour/control_protocol_search_path.cc2
-rw-r--r--libs/ardour/filesystem_paths.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/filesystem_paths.h b/libs/ardour/ardour/filesystem_paths.h
index 0e17327fa5..9d7d6ba216 100644
--- a/libs/ardour/ardour/filesystem_paths.h
+++ b/libs/ardour/ardour/filesystem_paths.h
@@ -36,7 +36,7 @@ namespace ARDOUR {
* @return the path to the directory that contains the system wide ardour
* modules.
*/
- sys::path system_module_directory ();
+ sys::path ardour_module_directory ();
} // namespace ARDOUR
diff --git a/libs/ardour/control_protocol_search_path.cc b/libs/ardour/control_protocol_search_path.cc
index aac83c602a..713ef30e65 100644
--- a/libs/ardour/control_protocol_search_path.cc
+++ b/libs/ardour/control_protocol_search_path.cc
@@ -42,7 +42,7 @@ control_protocol_search_path ()
SearchPath spath(user_config_directory ());
- spath += system_module_directory ();
+ spath += ardour_module_directory ();
spath.add_subdirectory_to_paths(surfaces_dir_name);
diff --git a/libs/ardour/filesystem_paths.cc b/libs/ardour/filesystem_paths.cc
index 465d07bddc..5ce4f4f7ed 100644
--- a/libs/ardour/filesystem_paths.cc
+++ b/libs/ardour/filesystem_paths.cc
@@ -50,7 +50,7 @@ user_config_directory ()
}
sys::path
-system_module_directory ()
+ardour_module_directory ()
{
sys::path module_directory(MODULE_DIR);
module_directory /= "ardour2";