Skip to content

Commit a215a84

Browse files
committed
style: drop const qualifier from qint64 arguments
Signed-off-by: Jyrki Gadinger <nilsding@nilsding.org>
1 parent 0f4222e commit a215a84

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/gui/folder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/libsync/discovery.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

313313
private slots:
314314
void setFolderQuota(const OCC::FolderQuota &folderQuota);

src/libsync/discoveryphase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

139139
private slots:
140140
void directoryListingIteratedSlot(const QString &, const QMap<QString, QString> &);

src/libsync/syncengine.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public slots:
157157
signals:
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:
200200
private 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);

0 commit comments

Comments
 (0)