]> git.lyx.org Git - lyx.git/blobdiff - src/VCBackend.cpp
* GuiToolbar.cpp:
[lyx.git] / src / VCBackend.cpp
index ff816a2112d03aba88a5e03c505854d2e026f2c0..ef85a62305a8729a84c37a3b6515c71eeed55603 100644 (file)
@@ -480,14 +480,15 @@ bool SVN::checkInEnabled()
 
 // FIXME Correctly return code should be checked instead of this.
 // This would need another solution than just plain startscript.
+// Hint from Andre': QProcess::readAllStandardError()...
 string SVN::scanLogFile(FileName const & f)
 {
        ifstream ifs(f.toFilesystemEncoding().c_str());
        string line;
 
-       while (ifs){
-               getline(ifs,line);
-               lyxerr<<line<<"\n";
+       while (ifs) {
+               getline(ifs, line);
+               lyxerr << line << "\n";
                if (prefixIs(line, "C "))
                        return line;
                if (contains(line, "Commit failed"))
@@ -500,7 +501,7 @@ string SVN::scanLogFile(FileName const & f)
 void SVN::checkOut()
 {
        FileName tmpf = FileName::tempName("lyxvcout");
-       if (tmpf.empty()){
+       if (tmpf.empty()) {
                LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
                return;
        }