13
0

Assume no filesystem links on windows

This commit is contained in:
Paul Davis 2013-07-13 08:20:45 -04:00
parent 745501b6f3
commit a0ada1f233

View File

@ -1463,6 +1463,9 @@ SoundFileOmega::check_info (const vector<string>& paths, bool& same_size, bool&
bool
SoundFileOmega::check_link_status (const Session* s, const vector<string>& paths)
{
#ifdef WIN32
return false;
#else
std::string tmpdir(Glib::build_filename (s->session_directory().sound_path(), "linktest"));
bool ret = false;
@ -1492,6 +1495,7 @@ SoundFileOmega::check_link_status (const Session* s, const vector<string>& paths
out:
rmdir (tmpdir.c_str());
return ret;
#endif
}
SoundFileChooser::SoundFileChooser (string title, ARDOUR::Session* s)