From 19787f2d7966f28dd12beb1bfac1f8e930ece8d6 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Tue, 18 Dec 2007 10:34:53 +0000 Subject: [PATCH] * 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 --- src/support/FileName.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }