This commit is contained in:
Jean-Marc Lasgouttes 2022-10-28 18:03:50 +02:00
parent c8015878e1
commit 6c2d4f9392
2 changed files with 2 additions and 2 deletions

View File

@ -2704,7 +2704,7 @@ void Buffer::markDepClean(string const & name)
}
bool Buffer::getStatus(FuncRequest const & cmd, FuncStatus & flag)
bool Buffer::getStatus(FuncRequest const & cmd, FuncStatus & flag) const
{
if (isInternal()) {
// FIXME? if there is an Buffer LFUN that can be dispatched even

View File

@ -171,7 +171,7 @@ public:
/// Can this function be exectued?
/// \return true if we made a decision
bool getStatus(FuncRequest const & cmd, FuncStatus & flag);
bool getStatus(FuncRequest const & cmd, FuncStatus & flag) const;
///
DocIterator getParFromID(int id) const;