From: Abdelrazak Younes Date: Tue, 18 Dec 2007 10:34:53 +0000 (+0000) Subject: * FileName::onlyPath(): use correct method. I need glasses! X-Git-Tag: 1.6.10~6884 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=19787f2d7966f28dd12beb1bfac1f8e930ece8d6;p=features.git * FileName::onlyPath(): use correct method. I need glasses! git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22206 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/FileName.cpp b/src/support/FileName.cpp index abc0616883..e847ecc5a2 100644 --- a/src/support/FileName.cpp +++ b/src/support/FileName.cpp @@ -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; }