summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2007-06-27 12:12:24 +0000
committerTim Mayberry <mojofunk@gmail.com>2007-06-27 12:12:24 +0000
commit1c8fc3c5843b135adc1ebceecc2ee8ffb6c8a3d4 (patch)
treebc57109454e6870d76d5cd3eaf13271e9ad3c203
parentfca7e674c15f83d762882e16ef67943e7e692ae3 (diff)
Rename ARDOUR::system_module_directory ARDOUR::ardour_module_directory
git-svn-id: svn://localhost/ardour2/trunk@2052 d708f5d6-7413-0410-9779-e7cbd77b26cf
-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";