mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 20:29:35 +01:00
Make sure we use the correct style of filepath separator on Windows
('libs/ardour/file_source.cc' still to be investigated)
This commit is contained in:
parent
c046b7c9d3
commit
d95de39339
6 changed files with 11 additions and 11 deletions
|
|
@ -133,7 +133,7 @@ MissingFileDialog::add_chosen ()
|
|||
break;
|
||||
}
|
||||
|
||||
split (str, dirs, ':');
|
||||
split (str, dirs, G_DIR_SEPARATOR);
|
||||
|
||||
newdir = chooser.get_filename ();
|
||||
|
||||
|
|
@ -144,7 +144,7 @@ MissingFileDialog::add_chosen ()
|
|||
}
|
||||
|
||||
if (!str.empty()) {
|
||||
str += ':';
|
||||
str += G_DIR_SEPARATOR;
|
||||
}
|
||||
|
||||
str += newdir;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue