* 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:
Abdelrazak Younes 2007-12-21 21:38:04 +00:00
parent dc9081c208
commit 0a55c924d9

View File

@ -1640,7 +1640,7 @@ string Buffer::absFileName() const
string Buffer::filePath() const
{
return d->filename.onlyPath().absFilename();
return d->filename.onlyPath().absFilename() + "/";
}