forked from qt-creator/qt-creator
Fix build
The (un)expectDirectoryChange API addition has been reverted Change-Id: I4736f51a77eb2f63b3e4a7b44426ad15a06624c7 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
1ef2e51cf8
commit
f7349e49df
@@ -102,7 +102,6 @@ bool MergeTool::start(const QString &workingDirectory, const QStringList &files)
|
||||
if (m_process->waitForStarted()) {
|
||||
connect(m_process, SIGNAL(finished(int)), this, SLOT(done()));
|
||||
connect(m_process, SIGNAL(readyRead()), this, SLOT(readData()));
|
||||
Core::DocumentManager::expectDirectoryChange(workingDirectory);
|
||||
}
|
||||
else {
|
||||
delete m_process;
|
||||
@@ -269,7 +268,6 @@ void MergeTool::done()
|
||||
} else {
|
||||
outputWindow->append(tr("Merge tool process terminated with exit code %1").arg(exitCode));
|
||||
}
|
||||
Core::DocumentManager::unexpectDirectoryChange(workingDirectory);
|
||||
GitPlugin::instance()->gitVersionControl()->emitRepositoryChanged(workingDirectory);
|
||||
deleteLater();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user