mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 23:28:14 +03:00
Move PropagateUpload ctor impl to the cpp file
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
This commit is contained in:
parent
56a6fe4731
commit
5e20e2b46f
2 changed files with 10 additions and 8 deletions
|
@ -164,6 +164,15 @@ bool PollJob::finished()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PropagateUploadFileCommon::PropagateUploadFileCommon(OwncloudPropagator *propagator, const SyncFileItemPtr &item)
|
||||||
|
: PropagateItemJob(propagator, item)
|
||||||
|
, _finished(false)
|
||||||
|
, _deleteExisting(false)
|
||||||
|
, _uploadEncryptedHelper(nullptr)
|
||||||
|
, _uploadingEncrypted(false)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
void PropagateUploadFileCommon::setDeleteExisting(bool enabled)
|
void PropagateUploadFileCommon::setDeleteExisting(bool enabled)
|
||||||
{
|
{
|
||||||
_deleteExisting = enabled;
|
_deleteExisting = enabled;
|
||||||
|
|
|
@ -228,14 +228,7 @@ protected:
|
||||||
QByteArray _transmissionChecksumHeader;
|
QByteArray _transmissionChecksumHeader;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
PropagateUploadFileCommon(OwncloudPropagator *propagator, const SyncFileItemPtr &item)
|
PropagateUploadFileCommon(OwncloudPropagator *propagator, const SyncFileItemPtr &item);
|
||||||
: PropagateItemJob(propagator, item)
|
|
||||||
, _finished(false)
|
|
||||||
, _deleteExisting(false)
|
|
||||||
, _uploadEncryptedHelper(nullptr)
|
|
||||||
, _uploadingEncrypted(false)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether an existing entity with the same name may be deleted before
|
* Whether an existing entity with the same name may be deleted before
|
||||||
|
|
Loading…
Reference in a new issue