File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -432,7 +432,7 @@ private slots:
432432 void etagRetrieved (const QByteArray &, const QDateTime &tp);
433433 void etagRetrievedFromSyncEngine (const QByteArray &, const QDateTime &time);
434434
435- void rootFileIdReceivedFromSyncEngine (const qint64 fileId);
435+ void rootFileIdReceivedFromSyncEngine (qint64 fileId);
436436
437437 void slotEmitFinishedDelayed ();
438438
Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ class ProcessDirectoryJob : public QObject
308308 // The root etag of this directory was fetched
309309 void etag (const QByteArray &, const QDateTime &time);
310310 void updatedRootFolderQuota (const int64_t &bytesUsed, const int64_t &bytesAvailable);
311- void rootFileIdReceived (const qint64 fileId);
311+ void rootFileIdReceived (qint64 fileId);
312312
313313private slots:
314314 void setFolderQuota (const OCC::FolderQuota &folderQuota);
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ class DiscoverySingleDirectoryJob : public QObject
134134 void etag (const QByteArray &, const QDateTime &time);
135135 void finished (const OCC::HttpResult<QVector<OCC::RemoteInfo>> &result);
136136 void setfolderQuota (const OCC::FolderQuota &folderQuota);
137- void firstDirectoryFileId (const qint64 fileId);
137+ void firstDirectoryFileId (qint64 fileId);
138138
139139private slots:
140140 void directoryListingIteratedSlot (const QString &, const QMap<QString, QString> &);
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ public slots:
157157signals:
158158 // During update, before reconcile
159159 void rootEtag (const QByteArray &, const QDateTime &);
160- void rootFileIdReceived (const qint64 fileId);
160+ void rootFileIdReceived (qint64 fileId);
161161
162162 // after the above signals. with the items that actually need propagating
163163 void aboutToPropagate (OCC::SyncFileItemVector &);
@@ -200,7 +200,7 @@ public slots:
200200private slots:
201201 void slotFolderDiscovered (bool local, const QString &folder);
202202 void slotRootEtagReceived (const QByteArray &, const QDateTime &time);
203- void slotRootFileIdReceived (const qint64 fileId);
203+ void slotRootFileIdReceived (qint64 fileId);
204204
205205 /* * When the discovery phase discovers an item */
206206 void slotItemDiscovered (const OCC::SyncFileItemPtr &item);
You can’t perform that action at this time.
0 commit comments