]> git.lyx.org Git - features.git/commitdiff
* Buffer::filePath(): add a trailing '/' because the original version used support...
authorAbdelrazak Younes <younes@lyx.org>
Fri, 21 Dec 2007 21:38:04 +0000 (21:38 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Fri, 21 Dec 2007 21:38:04 +0000 (21:38 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22249 a592a061-630c-0410-9148-cb99ea01b6c8

src/Buffer.cpp

index 73157013c147efbf80554788b4253d3e2bc07924..62451eadccbfee55408df8349a23618471644cf0 100644 (file)
@@ -1640,7 +1640,7 @@ string Buffer::absFileName() const
 
 string Buffer::filePath() const
 {
-       return d->filename.onlyPath().absFilename();
+       return d->filename.onlyPath().absFilename() + "/";
 }