Fix copy&paste bug.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21051 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-10-19 07:45:46 +00:00
parent 1503743eda
commit 050b0f152f

View File

@ -120,7 +120,7 @@ bool FileName::isFileReadable() const
bool FileName::isWritable() const
{
QFileInfo const fi(toqstr(name_));
return fi.isReadable();
return fi.isWritable();
}