forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/3.0'
This commit is contained in:
@@ -1551,7 +1551,7 @@ bool ClearCasePlugin::vcsOpen(const QString &workingDir, const QString &fileName
|
||||
QFile::rename(absPath + QLatin1String(".hijack"), absPath);
|
||||
}
|
||||
|
||||
if ((!response.error || response.stdOut.contains(QLatin1String("already checked out")))
|
||||
if ((!response.error || response.stdErr.contains(QLatin1String("already checked out")))
|
||||
&& !m_settings.disableIndexer) {
|
||||
setStatus(absPath, FileStatus::CheckedOut);
|
||||
}
|
||||
@@ -1683,7 +1683,7 @@ bool ClearCasePlugin::ccFileOp(const QString &workingDir, const QString &title,
|
||||
runCleartool(workingDir, args, m_settings.timeOutMS(),
|
||||
ShowStdOutInLogWindow | FullySynchronously);
|
||||
if (coResponse.error) {
|
||||
if (coResponse.stdOut.contains(QLatin1String("already checked out")))
|
||||
if (coResponse.stdErr.contains(QLatin1String("already checked out")))
|
||||
noCheckout = true;
|
||||
else
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user