From 04bbe9c124c73591fccdaa65fb8f865f248977c8 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Thu, 30 Jan 2025 11:00:43 +0100 Subject: [PATCH] ProjectExplorer: De-virtualize some Project member functions Change-Id: I759e5a5d2b7e9916b4ddf1c9b8116f5d5d6dd1c9 Reviewed-by: hjk --- 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 3cc8d3be98e..11ee75428c2 100644 --- a/src/plugins/projectexplorer/project.h +++ b/src/plugins/projectexplorer/project.h @@ -71,14 +71,14 @@ public: BuildSystem *createBuildSystem(Target *target) const; - virtual Utils::FilePath projectFilePath() const; + Utils::FilePath projectFilePath() const; virtual Utils::FilePath projectDirectory() const; // This does not affect nodes, only the root path. void changeRootProjectDirectory(); Utils::FilePath rootProjectDirectory() const; - virtual ProjectNode *rootProjectNode() const; + ProjectNode *rootProjectNode() const; ContainerNode *containerNode() const; // EditorConfiguration: