]> git.lyx.org Git - lyx.git/blobdiff - src/LyXVC.cpp
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / LyXVC.cpp
index 4acdd399723da9edc8c81c8d3700c5559d444b53..e55f0c6c6c482094047abf8c761ccc76a10110b6 100644 (file)
@@ -170,10 +170,10 @@ string LyXVC::checkOut()
 }
 
 
-string LyXVC::repoSynchro()
+string LyXVC::repoUpdate()
 {
-       LYXERR(Debug::LYXVC, "LyXVC: repoSynchro");
-       return vcs->repoSynchro();
+       LYXERR(Debug::LYXVC, "LyXVC: repoUpdate");
+       return vcs->repoUpdate();
 }
 
 
@@ -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();
 }