]> git.lyx.org Git - lyx.git/blobdiff - src/vc-backend.C
I reactivate the code to resize the InsetText on a resize event of the main
[lyx.git] / src / vc-backend.C
index 78405f16a83ce342ba7fd5d1bdf3dad700438f84..33a59362cdfbf822f9be69165d476dce404b8af2 100644 (file)
@@ -17,7 +17,7 @@
 #include "support/path.h"
 #include "support/filetools.h"
 #include "support/lstrings.h"
-#include "support/syscall.h"
+#include "support/systemcall.h"
 
 #include <fstream>
 
@@ -28,9 +28,9 @@ using std::getline;
 int VCS::doVCCommand(string const & cmd, string const & path)
 {
        lyxerr[Debug::LYXVC] << "doVCCommand: " << cmd << endl;
-        Systemcalls one;
+        Systemcall one;
        Path p(path);
-       int const ret = one.startscript(Systemcalls::Wait, cmd);
+       int const ret = one.startscript(Systemcall::Wait, cmd);
        return ret;
 }
 
@@ -70,9 +70,9 @@ string const RCS::find_file(string const & file)
 }
 
 
-void RCS::retrive(string const & file)
+void RCS::retrieve(string const & file)
 {
-       lyxerr[Debug::LYXVC] << "LyXVC::RCS: retrive.\n\t" << file << endl;
+       lyxerr[Debug::LYXVC] << "LyXVC::RCS: retrieve.\n\t" << file << endl;
        VCS::doVCCommand("co -q -r \""
                         + file + "\"",
                         string());