mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Support symlinks, also on Windows!
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25988 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
dba8932453
commit
a06fd8abc5
@ -811,12 +811,19 @@ docstring const FileName::relPath(string const & path) const
|
||||
|
||||
bool operator==(FileName const & lhs, FileName const & rhs)
|
||||
{
|
||||
// FIXME: We need to solve these warnings from documentations:
|
||||
// * This will not compare two different symbolic links pointing to the same
|
||||
// file.
|
||||
// FIXME: We need to solve this warning from Qt documentation:
|
||||
// * Long and short file names that refer to the same file on Windows are
|
||||
// treated as if they referred to different files.
|
||||
return lhs.d->fi == rhs.d->fi;
|
||||
if (!lhs.d->fi.isSymLink() && !rhs.d->fi.isSymLink())
|
||||
return lhs.d->fi == rhs.d->fi;
|
||||
|
||||
QFileInfo fi1(lhs.d->fi);
|
||||
if (fi1.isSymLink())
|
||||
fi1 = QFileInfo(fi1.symLinkTarget());
|
||||
QFileInfo fi2(rhs.d->fi);
|
||||
if (fi2.isSymLink())
|
||||
fi2 = QFileInfo(fi2.symLinkTarget());
|
||||
return fi1 == fi2;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user