Minor os_cygwin.C change, from Enrico

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14945 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Bo Peng 2006-09-08 15:07:22 +00:00
parent 290a6b90ce
commit f478418d3f

View File

@ -204,7 +204,11 @@ string internal_path(string const & p)
string external_path_list(string const & p)
{
#ifdef X_DISPLAY_MISSING
return convert_path_list(p, PathStyle(windows));
#else
return convert_path_list(p, PathStyle(posix));
#endif
}