From 3aa13958fde29b6f4fb0cad407a3cc9cf1b273c9 Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 27 Mar 2017 18:43:42 +0200 Subject: ProjectExplorer: De-virtualize Project::files() It's never overloaded. Change-Id: Ia733e7525a98c19060abbbfc2ae49c06be8b8d5d Reviewed-by: Orgad Shaneh --- src/plugins/projectexplorer/project.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/project.h b/src/plugins/projectexplorer/project.h index f5f5fc49fd..87af5aaa5f 100644 --- a/src/plugins/projectexplorer/project.h +++ b/src/plugins/projectexplorer/project.h @@ -116,8 +116,8 @@ public: GeneratedFiles = 0x2, AllFiles = SourceFiles | GeneratedFiles }; - virtual QStringList files(FilesMode fileMode, - const std::function &filter = {}) const; + QStringList files(FilesMode fileMode, + const std::function &filter = {}) const; virtual QStringList filesGeneratedFrom(const QString &sourceFile) const; static QString makeUnique(const QString &preferredName, const QStringList &usedNames); -- cgit v1.2.1