]> git.lyx.org Git - lyx.git/blobdiff - src/vc-backend.h
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / vc-backend.h
index 7cb0783b22cca4a9ccbbbf9510ff823a4bdd4464..bd54e8948468710a831a8a1d9b2634d42bb634ef 100644 (file)
@@ -47,7 +47,7 @@ public:
        ///
        Buffer * owner() const { return owner_; }
        ///
-       VCStatus stat() const { return vcstat; }
+       VCStatus status() const { return vcstatus; }
 protected:
        ///
        static int doVCCommand(string const &, string const &);
@@ -58,7 +58,7 @@ protected:
        string master_;
        
        /// The status of the VC controlled file.
-       VCStatus vcstat;
+       VCStatus vcstatus;
        
        /** The version of the VC file. I am not sure if this can be a
            string of if it must be a
@@ -79,7 +79,7 @@ public:
        explicit
        RCS(string const & m);
        ///
-       static string find_file(string const & file);
+       static string const find_file(string const & file);
        ///
        static void retrive(string const & file);
        ///
@@ -96,7 +96,6 @@ public:
        virtual void undoLast();
        ///
        virtual void getLog(string const &);
-private:
 };
 
 
@@ -107,7 +106,7 @@ public:
        explicit
        CVS(string const & m, string const & f);
        ///
-       static string find_file(string const & file);
+       static string const find_file(string const & file);
        ///
        virtual void scanMaster();
        ///