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
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2013-10-25 15:28:48 +0400
committerKlaas Freitag <freitag@owncloud.com>2013-10-25 15:31:00 +0400
commit7a68961b25fa34e5901ae8e74be64bf9fe5c324f (patch)
tree044aa7bc738210c87e9a3c5205fc76a8c52ab198 /src/mirall/syncfileitem.h
parentb4621e22e618e06410ec0825a78285616f918278 (diff)
Add handling for the file_id data to the sync items.
Diffstat (limited to 'src/mirall/syncfileitem.h')
-rw-r--r--src/mirall/syncfileitem.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mirall/syncfileitem.h b/src/mirall/syncfileitem.h
index ab958cfcc..018dcb5a1 100644
--- a/src/mirall/syncfileitem.h
+++ b/src/mirall/syncfileitem.h
@@ -84,13 +84,14 @@ public:
// Variables used by the propagator
QByteArray _originalFile; // as it is in the csync tree
csync_instructions_e _instruction;
- time_t _modtime;
- QByteArray _etag;
- quint64 _size;
+ time_t _modtime;
+ QByteArray _etag;
+ quint64 _size;
// Variables usefull to report to the user
- Status _status;
- QString _errorString; // Contains a string only in case of error
+ Status _status;
+ QString _errorString; // Contains a string only in case of error
+ QString _fileId;
};