mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-06 17:45:17 +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()) {
|
if (isInternal()) {
|
||||||
// FIXME? if there is an Buffer LFUN that can be dispatched even
|
// FIXME? if there is an Buffer LFUN that can be dispatched even
|
||||||
|
@ -171,7 +171,7 @@ public:
|
|||||||
|
|
||||||
/// Can this function be exectued?
|
/// Can this function be exectued?
|
||||||
/// \return true if we made a decision
|
/// \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;
|
DocIterator getParFromID(int id) const;
|
||||||
|
Loading…
Reference in New Issue
Block a user