VCS: constify, thanks Andre

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28314 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-02-01 23:23:01 +00:00
parent 2179de28f3
commit edd6631e25
2 changed files with 2 additions and 2 deletions

View File

@ -501,7 +501,7 @@ bool SVN::checkLockMode()
}
bool SVN::isLocked()
bool SVN::isLocked() const
{
//refresh file info
FileName file(file_.absFilename());

View File

@ -229,7 +229,7 @@ protected:
/// checks locking policy and setup locked_mode_
bool checkLockMode();
/// is the loaded file locked?
bool isLocked();
bool isLocked() const;
/// acquire/release write lock for the current file
void fileLock(bool lock, support::FileName const & tmpf, std::string & status);