global static path to plugin scanner app.
[ardour.git] / libs / ardour / midi_patch_search_path.cc
index ccad1de4664c482cce83f8201dc39e7a3fa703a1..c099c379e94926d3ee65ec76c02e9f0baf3a01b1 100644 (file)
@@ -31,14 +31,14 @@ using namespace PBD;
 
 namespace ARDOUR {
 
-SearchPath
+Searchpath
 midi_patch_search_path ()
 {
-       SearchPath spath (ardour_data_search_path());
+       Searchpath spath (ardour_data_search_path());
        spath.add_subdirectory_to_paths(midi_patch_dir_name);
 
        bool midi_patch_path_defined = false;
-       SearchPath spath_env (Glib::getenv(midi_patch_env_variable_name, midi_patch_path_defined));
+       Searchpath spath_env (Glib::getenv(midi_patch_env_variable_name, midi_patch_path_defined));
 
        if (midi_patch_path_defined) {
                spath += spath_env;