summaryrefslogtreecommitdiff
path: root/src/plugins/cvs/cvsplugin.cpp
diff options
context:
space:
mode:
authordt <qtc-committer@nokia.com>2010-01-22 16:49:57 +0100
committerdt <qtc-committer@nokia.com>2010-02-17 16:51:02 +0100
commit75545a2bf0121af9f081b2e5e76879e42e490cc2 (patch)
tree3a1948b50e3ed13515730db560e4cbcb63f04c20 /src/plugins/cvs/cvsplugin.cpp
parent508173b8726300be70c16e3781b2f9a76a2195eb (diff)
downloadqt-creator-75545a2bf0121af9f081b2e5e76879e42e490cc2.tar.gz
Fix FileManager to correctly handle multiple IFile's for the same file
And port the Qt4ProjectManager to use that API for synchronization between editors and the .pro file tree. Reviewed-By: con
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r--src/plugins/cvs/cvsplugin.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp
index ddb06bf1b0..b7d268da54 100644
--- a/src/plugins/cvs/cvsplugin.cpp
+++ b/src/plugins/cvs/cvsplugin.cpp
@@ -599,7 +599,6 @@ void CVSPlugin::revertCurrentFile()
args << QLatin1String("update") << QLatin1String("-C") << state.relativeCurrentFile();
const CVSResponse revertResponse = runCVS(state.currentFileTopLevel(), args, m_settings.timeOutMS(), true);
if (revertResponse.result == CVSResponse::Ok) {
- fcb.setModifiedReload(true);
cvsVersionControl()->emitFilesChanged(QStringList(state.currentFile()));
}
}