mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 07:42:02 +00:00
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:
parent
bdf69de113
commit
ed98a0000d
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user