From: Stephan Witt Date: Fri, 8 Oct 2010 05:26:12 +0000 (+0000) Subject: add missing implementation of the check method for repo-update availability X-Git-Tag: 2.0.0~2442 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=de5aab29d4abb0db702e7fe6f1370c5169b56e4f;p=features.git add missing implementation of the check method for repo-update availability git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35572 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/LyXVC.cpp b/src/LyXVC.cpp index 9efa9ef296..741abf9854 100644 --- a/src/LyXVC.cpp +++ b/src/LyXVC.cpp @@ -314,6 +314,13 @@ bool LyXVC::undoLastEnabled() const return vcs && vcs->undoLastEnabled(); } + +bool LyXVC::repoUpdateEnabled() const +{ + return vcs && vcs->repoUpdateEnabled(); +} + + bool LyXVC::prepareFileRevision(string const & rev, std::string & f) { return vcs && vcs->prepareFileRevision(rev, f);