summaryrefslogtreecommitdiffstats
path: root/plugins/fossil/fossilclient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/fossil/fossilclient.cpp')
-rw-r--r--plugins/fossil/fossilclient.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/fossil/fossilclient.cpp b/plugins/fossil/fossilclient.cpp
index 52495c5..02306a3 100644
--- a/plugins/fossil/fossilclient.cpp
+++ b/plugins/fossil/fossilclient.cpp
@@ -1087,8 +1087,8 @@ void FossilClient::revertFile(const FilePath &workingDir,
// Indicate file list
VcsCommand *cmd = createCommand(workingDir);
const QStringList files = QStringList(workingDir.toString() + "/" + file);
- connect(cmd, &VcsCommand::finished, this, [this, files](bool success) {
- if (success)
+ connect(cmd, &VcsCommand::done, this, [this, files, cmd] {
+ if (cmd->result() == ProcessResult::FinishedWithSuccess)
emit changed(files);
});
enqueueJob(cmd, args);
@@ -1116,8 +1116,8 @@ void FossilClient::revertAll(const FilePath &workingDir, const QString &revision
// Indicate repository change
VcsCommand *cmd = createCommand(workingDir);
const QStringList files = QStringList(workingDir.toString());
- connect(cmd, &VcsCommand::finished, this, [this, files](bool success) {
- if (success)
+ connect(cmd, &VcsCommand::done, this, [this, files, cmd] {
+ if (cmd->result() == ProcessResult::FinishedWithSuccess)
emit changed(files);
});
enqueueJob(createCommand(workingDir), args);