]> git.lyx.org Git - features.git/commitdiff
* FileName::onlyPath(): use correct method. I need glasses!
authorAbdelrazak Younes <younes@lyx.org>
Tue, 18 Dec 2007 10:34:53 +0000 (10:34 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Tue, 18 Dec 2007 10:34:53 +0000 (10:34 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22206 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/FileName.cpp

index abc0616883d0e75debe5a1aa7a984ebaf8728fb3..e847ecc5a2ace72d7073febeb51644fb4e69e23d 100644 (file)
@@ -268,7 +268,7 @@ string FileName::onlyFileName() const
 FileName FileName::onlyPath() const
 {
        FileName path;
-       path.d->fi.setFile(d->fi.filePath());
+       path.d->fi.setFile(d->fi.path());
        return path;
 }