* 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
This commit is contained in:
Abdelrazak Younes 2007-12-18 10:34:53 +00:00
parent 5df6a11820
commit 19787f2d79

View 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;
}