mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
FileName(): Remove isAbsolute() assertion. This is not needed because FileName now caches a QFileInfo instead if the passed path.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21845 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
34f0cc2ae1
commit
d2b0c5e87d
@ -82,7 +82,7 @@ FileName::FileName() : d(new Private)
|
||||
FileName::FileName(string const & abs_filename)
|
||||
: d(abs_filename.empty() ? new Private : new Private(abs_filename))
|
||||
{
|
||||
BOOST_ASSERT(empty() || d->fi.isAbsolute());
|
||||
BOOST_ASSERT(empty());
|
||||
#if defined(_WIN32)
|
||||
BOOST_ASSERT(!contains(abs_filename, '\\'));
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user