mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
constify
This commit is contained in:
parent
c8015878e1
commit
6c2d4f9392
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user