mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Coding style.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25813 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7bfea6679c
commit
e594f7d4f1
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user