Remove const modifier from the correct function.

see r31737.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31738 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2009-10-25 14:00:29 +00:00
parent bdf69de113
commit ed98a0000d

View File

@ -524,7 +524,7 @@ string Buffer::logName(LogType * type) const
}
void Buffer::setReadonly(bool const flag) const
void Buffer::setReadonly(bool const flag)
{
if (d->read_only != flag) {
d->read_only = flag;
@ -2261,7 +2261,7 @@ string Buffer::filePath() const
}
bool Buffer::isReadonly()
bool Buffer::isReadonly() const
{
return d->read_only;
}