Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2013-11-27 18:37:48 +0400
committerOlivier Goffart <ogoffart@woboq.com>2013-11-28 13:01:30 +0400
commit99eeaa0db5bffa3b1f9f3974a55e92bb839ecf61 (patch)
tree62e99e55fb2cc66e7c4830ee93cfb995f53c2b89 /src
parent80a01ecff34d743f3c6126f052b6d1e39c4150cc (diff)
no need to set twice the error string
done() is already taking care of that
Diffstat (limited to 'src')
-rw-r--r--src/mirall/owncloudpropagator.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mirall/owncloudpropagator.cpp b/src/mirall/owncloudpropagator.cpp
index b577c3941..bc3c565ec 100644
--- a/src/mirall/owncloudpropagator.cpp
+++ b/src/mirall/owncloudpropagator.cpp
@@ -381,11 +381,8 @@ void PropagateUploadFile::start()
const QString errMsg = tr("Local file changed during sync, syncing once it arrived completely");
done( SyncFileItem::SoftError, errMsg );
- _item._errorString = errMsg;
- return;
} else if( state == HBF_USER_ABORTED ) {
const QString errMsg = tr("Sync was aborted by user.");
- _item._errorString = errMsg;
done( SyncFileItem::SoftError, errMsg );
} else {
// Other HBF error conditions.