X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsearch_path_option.cc;h=9aea6178120fe71aaa6bffe2e8655bfbf56d8066;hb=d3e2de8b4e006ac652b004cb44b66afa9f6584f6;hp=1060e05b3f59884eaf68236b6f3a135c8068472c;hpb=d95de393390f7f8ee4c13e491b4e4d2555db535a;p=ardour.git diff --git a/gtk2_ardour/search_path_option.cc b/gtk2_ardour/search_path_option.cc index 1060e05b3f..9aea617812 100644 --- a/gtk2_ardour/search_path_option.cc +++ b/gtk2_ardour/search_path_option.cc @@ -103,7 +103,7 @@ SearchPathOption::set_state_from_config () clear (); path_box.pack_start (session_label); - split (str, dirs, G_DIR_SEPARATOR); + split (str, dirs, G_SEARCHPATH_SEPARATOR); for (vector::iterator d = dirs.begin(); d != dirs.end(); ++d) { add_path (*d); @@ -118,7 +118,7 @@ SearchPathOption::changed () for (list::iterator p = paths.begin(); p != paths.end(); ++p) { if (!str.empty()) { - str += G_DIR_SEPARATOR; + str += G_SEARCHPATH_SEPARATOR; } str += (*p)->entry.get_text (); }