Qmake: Use a QmakeProFileNode instead of a generic node

... in handleSubDirContextMenu overload, obsoleting one cast there.

Change-Id: Ic6e8bfeee0fa2f8838a29df8123efe10f2faefd4
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2020-02-27 15:57:26 +01:00
parent ef6af1b7df
commit bc79ec1ee2
2 changed files with 16 additions and 16 deletions

View File

@@ -27,12 +27,12 @@
#include <extensionsystem/iplugin.h>
namespace ProjectExplorer {
class Project;
class Node;
} // ProjectExplorer
namespace ProjectExplorer { class Project; }
namespace QmakeProjectManager {
class QmakeProFileNode;
namespace Internal {
class QmakeProjectManagerPlugin final : public ExtensionSystem::IPlugin
@@ -43,7 +43,7 @@ class QmakeProjectManagerPlugin final : public ExtensionSystem::IPlugin
public:
~QmakeProjectManagerPlugin() final;
static void buildProduct(ProjectExplorer::Project *project, ProjectExplorer::Node *proFileNode);
static void buildProduct(ProjectExplorer::Project *project, QmakeProFileNode *proFileNode);
#ifdef WITH_TESTS
private slots: