]> git.lyx.org Git - lyx.git/blobdiff - src/LyXVC.h
Update Win installer for new dictionary links. Untested.
[lyx.git] / src / LyXVC.h
index f54fd9ad2687b1ab9859dbe268f08ae58421c128..fd223570172ee0338967ab3e88d7cb9e2f2e1e01 100644 (file)
@@ -12,6 +12,7 @@
 #ifndef LYX_VC_H
 #define LYX_VC_H
 
+#include "support/docstring.h"
 #include "support/unique_ptr.h"
 
 #include <string>
@@ -48,8 +49,8 @@ public:
        };
        ///
        LyXVC();
-       /// Name of the underlying VCS
-       std::string vcname() const;
+       /// Status of the underlying VCS
+       docstring vcstatus() const;
        /// Is \p fn under version control?
        static bool fileInVC(support::FileName const & fn);
        /** Not a good name perhaps. This function should be called whenever
@@ -175,7 +176,8 @@ public:
                Tree = 2,
                Author = 3,
                Date = 4,
-               Time = 5
+               Time = 5,
+               FileAbbrev = 6
        };
 
        /**
@@ -190,7 +192,7 @@ private:
        Buffer * owner_;
 
        ///
-       unique_ptr<VCS> vcs;
+       unique_ptr<VCS> vcs_;
 };