mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 23:28:14 +03:00
Move qDeclareMetatype from Folder to SyncEngine
This commit is contained in:
parent
d8c479ab1e
commit
3912dba33a
2 changed files with 2 additions and 3 deletions
|
@ -65,9 +65,6 @@ Folder::Folder(const FolderDefinition& definition,
|
||||||
, _fileLog(new SyncRunFileLog)
|
, _fileLog(new SyncRunFileLog)
|
||||||
, _saveBackwardsCompatible(false)
|
, _saveBackwardsCompatible(false)
|
||||||
{
|
{
|
||||||
qRegisterMetaType<SyncFileItemVector>("SyncFileItemVector");
|
|
||||||
qRegisterMetaType<SyncFileItem::Direction>("SyncFileItem::Direction");
|
|
||||||
|
|
||||||
qsrand(QTime::currentTime().msec());
|
qsrand(QTime::currentTime().msec());
|
||||||
_timeSinceLastSyncStart.start();
|
_timeSinceLastSyncStart.start();
|
||||||
_timeSinceLastSyncDone.start();
|
_timeSinceLastSyncDone.start();
|
||||||
|
|
|
@ -78,6 +78,8 @@ SyncEngine::SyncEngine(AccountPtr account, const QString& localPath,
|
||||||
qRegisterMetaType<SyncFileItem>("SyncFileItem");
|
qRegisterMetaType<SyncFileItem>("SyncFileItem");
|
||||||
qRegisterMetaType<SyncFileItem::Status>("SyncFileItem::Status");
|
qRegisterMetaType<SyncFileItem::Status>("SyncFileItem::Status");
|
||||||
qRegisterMetaType<SyncFileStatus>("SyncFileStatus");
|
qRegisterMetaType<SyncFileStatus>("SyncFileStatus");
|
||||||
|
qRegisterMetaType<SyncFileItemVector>("SyncFileItemVector");
|
||||||
|
qRegisterMetaType<SyncFileItem::Direction>("SyncFileItem::Direction");
|
||||||
|
|
||||||
// Everything in the SyncEngine expects a trailing slash for the localPath.
|
// Everything in the SyncEngine expects a trailing slash for the localPath.
|
||||||
Q_ASSERT(localPath.endsWith(QLatin1Char('/')));
|
Q_ASSERT(localPath.endsWith(QLatin1Char('/')));
|
||||||
|
|
Loading…
Reference in a new issue