aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/allprojectsfilter.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2016-02-02 18:26:51 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2016-02-03 08:29:08 +0000
commitf4296d7504e87d291232bc13caa99a439d2393ab (patch)
tree66892ae3ded5333a7036401031effaf228921d3a /src/plugins/projectexplorer/allprojectsfilter.h
parent6a3e687d140cad3dec006b2d5fa8982d4b10f31c (diff)
ProjectExplorer: Modernize
* Use override where appropriate * Use pragma once * Make more constructors explicit Change-Id: I2865fe10f288e3de570826058e43b70a0cb4ee37 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/projectexplorer/allprojectsfilter.h')
-rw-r--r--src/plugins/projectexplorer/allprojectsfilter.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/plugins/projectexplorer/allprojectsfilter.h b/src/plugins/projectexplorer/allprojectsfilter.h
index b000d0f816..0d8319d913 100644
--- a/src/plugins/projectexplorer/allprojectsfilter.h
+++ b/src/plugins/projectexplorer/allprojectsfilter.h
@@ -23,8 +23,7 @@
**
****************************************************************************/
-#ifndef ALLPROJECTSFILTER_H
-#define ALLPROJECTSFILTER_H
+#pragma once
#include <coreplugin/locator/basefilefilter.h>
@@ -39,8 +38,8 @@ class AllProjectsFilter : public Core::BaseFileFilter
public:
AllProjectsFilter();
- void refresh(QFutureInterface<void> &future);
- void prepareSearch(const QString &entry);
+ void refresh(QFutureInterface<void> &future) override;
+ void prepareSearch(const QString &entry) override;
private:
void markFilesAsOutOfDate();
@@ -48,5 +47,3 @@ private:
} // namespace Internal
} // namespace ProjectExplorer
-
-#endif // ALLPROJECTSFILTER_H