]> git.lyx.org Git - lyx.git/blobdiff - src/LyXVC.h
Partially revert r34995, which broke math output. Not sure why yet....
[lyx.git] / src / LyXVC.h
index 0d9c826d5a66e8b96de209fc44fead55d369b631..fb561a39e2c4220bd621df6ff7278daa34dd5097 100644 (file)
@@ -110,8 +110,9 @@ public:
         * Parameter rev can be either revision number or negative number
         * which is interpreted as how many revision back from the current
         * one do we want. rev=0 is reserved for the last (committed) revision.
+        * We need rev to be string, since in various VCS revision is not integer.
         */
-       bool prepareFileRevision(int rev, std::string & f);
+       bool prepareFileRevision(std::string const & rev, std::string & f);
        /// Does the current VC supports this operation?
        bool prepareFileRevisionEnabled();
 
@@ -143,6 +144,7 @@ public:
 
        // type of the revision information
        enum RevisionInfo {
+               Unknown = 0,
                File = 1,
                Tree = 2,
                Author = 3,