From 09372918c185ad096ec176c8f44b48ba0e92f9bd Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 25 Feb 2019 12:08:58 +0100 Subject: ProjectExplorer: Remove FileNode's isGenerated constructor bool Use setter of base class, similar to setListInProject() before. Change-Id: Id620f0084a5dec0410f29c80f8f6393a6bcd5050 Reviewed-by: Tobias Hunger --- src/plugins/pythoneditor/pythoneditorplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/pythoneditor/pythoneditorplugin.cpp') diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index dfd9c6a50e..b937f9c89e 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -471,7 +471,7 @@ class PythonFileNode : public FileNode public: PythonFileNode(const Utils::FileName &filePath, const QString &nodeDisplayName, FileType fileType = FileType::Source) - : FileNode(filePath, fileType, false) + : FileNode(filePath, fileType) , m_displayName(nodeDisplayName) {} -- cgit v1.2.1