]> git.lyx.org Git - lyx.git/blobdiff - src/LyXVC.cpp
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / LyXVC.cpp
index 93c44b3b0fdc98596dc654ea2b258598f3db9b81..e55f0c6c6c482094047abf8c761ccc76a10110b6 100644 (file)
@@ -226,7 +226,7 @@ void LyXVC::toggleReadOnly()
 }
 
 
-bool LyXVC::inUse()
+bool LyXVC::inUse() const
 {
        if (vcs)
                return true;
@@ -268,25 +268,25 @@ string const LyXVC::getLogFile() const
 }
 
 
-bool LyXVC::checkOutEnabled()
+bool LyXVC::checkOutEnabled() const
 {
        return vcs && vcs->checkOutEnabled();
 }
 
 
-bool LyXVC::checkInEnabled()
+bool LyXVC::checkInEnabled() const
 {
        return vcs && vcs->checkInEnabled();
 }
 
 
-bool LyXVC::lockingToggleEnabled()
+bool LyXVC::lockingToggleEnabled() const
 {
        return vcs && vcs->lockingToggleEnabled();
 }
 
 
-bool LyXVC::undoLastEnabled()
+bool LyXVC::undoLastEnabled() const
 {
        return vcs && vcs->undoLastEnabled();
 }