]> git.lyx.org Git - lyx.git/blobdiff - src/VCBackend.cpp
Refactor InsetQuotes.h enums
[lyx.git] / src / VCBackend.cpp
index 3ea462439999a3e84256491a4e9614dbd5a1afcc..a1e0ec273867022e57ed40fd993d3314d6c9db6b 100644 (file)
@@ -13,7 +13,6 @@
 
 #include "VCBackend.h"
 #include "Buffer.h"
-#include "DispatchResult.h"
 #include "LyX.h"
 #include "FuncRequest.h"
 
 #include "support/lstrings.h"
 #include "support/PathChanger.h"
 #include "support/Systemcall.h"
-#include "support/regex.h"
 #include "support/TempFile.h"
 
 #include <fstream>
 #include <iomanip>
+#include <regex>
 #include <sstream>
 
 using namespace std;
@@ -1156,7 +1155,7 @@ SVN::SVN(FileName const & m, Buffer * b) : VCS(b)
        // Here we know that the buffer file is either already in SVN or
        // about to be registered
        master_ = m;
-       locked_mode_ = 0;
+       locked_mode_ = false;
        scanMaster();
 }