[LyX/master] Comments

Richard Kimberly Heck rikiheck at lyx.org
Fri Dec 18 20:48:27 UTC 2020


commit 49506153c16d6e435e993e40b7520a5ce2b2471c
Author: Richard Kimberly Heck <rikiheck at lyx.org>
Date:   Fri Dec 18 16:19:05 2020 -0500

    Comments
---
 src/VCBackend.h |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/VCBackend.h b/src/VCBackend.h
index 24758d7..d983906 100644
--- a/src/VCBackend.h
+++ b/src/VCBackend.h
@@ -152,7 +152,8 @@ public:
 	explicit
 	RCS(support::FileName const & m, Buffer * b);
 
-	/// return the revision file for the given file, if found
+	/// Determine whether the file is under RCS control
+	/// \return the file containing the meta-data (FILE,v) if so, else empty
 	static support::FileName const findFile(support::FileName const & file);
 
 	/// get file from repo, the caller must ensure that it does not exist locally
@@ -238,7 +239,8 @@ public:
 	explicit
 	CVS(support::FileName const & m, Buffer * b);
 
-	/// return the revision file for the given file, if found
+	/// Determine whether the file is under CVS control
+	/// \return the file containing the meta-data (CVS/entries) if so, else empty
 	static support::FileName const findFile(support::FileName const & file);
 
 	/// get file from repo, the caller must ensure that it does not exist locally
@@ -379,7 +381,8 @@ public:
 	explicit
 	SVN(support::FileName const & m, Buffer * b);
 
-	/// return the revision file for the given file, if found
+	/// Determine whether the file is under SVN control
+	/// \return the file itself if so, else empty
 	static support::FileName const findFile(support::FileName const & file);
 
 	/// get file from repo, the caller must ensure that it does not exist locally
@@ -489,7 +492,8 @@ public:
 	explicit
 	GIT(support::FileName const & m, Buffer * b);
 
-	/// return the revision file for the given file, if found
+	/// Determine whether the file is under RCS control
+	/// \return the file itself if so, else empty
 	static support::FileName const findFile(support::FileName const & file);
 
 	/// get file from repo, the caller must ensure that it does not exist locally


More information about the lyx-cvs mailing list