summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-03-27 18:43:42 +0200
committerhjk <hjk@qt.io>2017-03-28 08:30:40 +0000
commit3aa13958fde29b6f4fb0cad407a3cc9cf1b273c9 (patch)
tree2917588550e56243e1ebeea4f2690828ace4ace3
parent2ee79677505668853f3271cd0a30b1700e34d512 (diff)
downloadqt-creator-3aa13958fde29b6f4fb0cad407a3cc9cf1b273c9.tar.gz
ProjectExplorer: De-virtualize Project::files()
It's never overloaded. Change-Id: Ia733e7525a98c19060abbbfc2ae49c06be8b8d5d Reviewed-by: Orgad Shaneh <orgads@gmail.com>
-rw-r--r--src/plugins/projectexplorer/project.h4
1 files 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<bool(const FileNode *)> &filter = {}) const;
+ QStringList files(FilesMode fileMode,
+ const std::function<bool(const FileNode *)> &filter = {}) const;
virtual QStringList filesGeneratedFrom(const QString &sourceFile) const;
static QString makeUnique(const QString &preferredName, const QStringList &usedNames);