Fix 'unused parameter name' warnings

This commit is contained in:
Christian Kamm 2019-08-12 08:08:26 +02:00 committed by Kevin Ottens
parent c9dbe46542
commit 8a5a185752
No known key found for this signature in database
GPG key ID: 074BBBCB8DECC9E2
2 changed files with 2 additions and 2 deletions

View file

@ -294,7 +294,7 @@ public:
void dehydratePlaceholder(const SyncFileItem &) override {}
void convertToPlaceholder(const QString &, const SyncFileItem &, const QString &) override {}
bool needsMetadataUpdate(const SyncFileItem &item) override { return false; }
bool needsMetadataUpdate(const SyncFileItem &) override { return false; }
bool isDehydratedPlaceholder(const QString &) override { return false; }
bool statTypeVirtualFile(csync_file_stat_t *, void *) override { return false; }

View file

@ -44,7 +44,7 @@ public:
void dehydratePlaceholder(const SyncFileItem &item) override;
void convertToPlaceholder(const QString &filename, const SyncFileItem &item, const QString &) override;
bool needsMetadataUpdate(const SyncFileItem &item) override { return false; }
bool needsMetadataUpdate(const SyncFileItem &) override { return false; }
bool isDehydratedPlaceholder(const QString &filePath) override;
bool statTypeVirtualFile(csync_file_stat_t *stat, void *stat_data) override;