summaryrefslogtreecommitdiff
path: root/gtk2_ardour/missing_file_dialog.cc
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2014-04-11 13:03:48 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2014-04-11 13:03:48 +0100
commitd95de393390f7f8ee4c13e491b4e4d2555db535a (patch)
tree67d0b63484c40e3ec38932d79e98d0d6ad1969e1 /gtk2_ardour/missing_file_dialog.cc
parentc046b7c9d36d54600907565271a8ea2ceb004300 (diff)
Make sure we use the correct style of filepath separator on Windows
('libs/ardour/file_source.cc' still to be investigated)
Diffstat (limited to 'gtk2_ardour/missing_file_dialog.cc')
-rw-r--r--gtk2_ardour/missing_file_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/missing_file_dialog.cc b/gtk2_ardour/missing_file_dialog.cc
index 37868d5572..25f443d198 100644
--- a/gtk2_ardour/missing_file_dialog.cc
+++ b/gtk2_ardour/missing_file_dialog.cc
@@ -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;