From 0221b591693d96af0765a3fbd094d9390962edda Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Tue, 13 Aug 2019 15:20:02 +0200 Subject: [PATCH] Add missing overrides Fix-up of b0bee4b947c45103a06c3d747fbdd569afcb5450 which introduced override for some of the overridden methods. Change-Id: If7c47a402a9fbce53bae37702afec60de0960552 Reviewed-by: Christian Stenger --- src/plugins/coreplugin/locator/spotlightlocatorfilter.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/coreplugin/locator/spotlightlocatorfilter.mm b/src/plugins/coreplugin/locator/spotlightlocatorfilter.mm index 049c5bebafa..c3c3833a8f0 100644 --- a/src/plugins/coreplugin/locator/spotlightlocatorfilter.mm +++ b/src/plugins/coreplugin/locator/spotlightlocatorfilter.mm @@ -50,10 +50,10 @@ class SpotlightIterator : public BaseFileFilter::Iterator { public: SpotlightIterator(const QString &expression); - ~SpotlightIterator(); + ~SpotlightIterator() override; - void toFront(); - bool hasNext() const; + void toFront() override; + bool hasNext() const override; Utils::FilePath next() override; Utils::FilePath filePath() const override;