mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
* Buffer::filePath(): add a trailing '/' because the original version used support::onlyPath() which keeps the trailing slash.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22249 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
dc9081c208
commit
0a55c924d9
@ -1640,7 +1640,7 @@ string Buffer::absFileName() const
|
||||
|
||||
string Buffer::filePath() const
|
||||
{
|
||||
return d->filename.onlyPath().absFilename();
|
||||
return d->filename.onlyPath().absFilename() + "/";
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user