forked from qt-creator/qt-creator
ProjectExplorer: Remove Node::m_id
It was only used within cmake, in a role that is nowadays covered by buildKey. Change-Id: I4fd77c06a3bb8965db5235315cb017c7b548fbaa Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -35,8 +35,6 @@ class CMakeInputsNode : public ProjectExplorer::ProjectNode
|
||||
public:
|
||||
CMakeInputsNode(const Utils::FileName &cmakeLists);
|
||||
|
||||
static QByteArray generateId(const Utils::FileName &inputFile);
|
||||
|
||||
bool showInSimpleTree() const final;
|
||||
};
|
||||
|
||||
@@ -66,7 +64,7 @@ class CMakeTargetNode : public ProjectExplorer::ProjectNode
|
||||
public:
|
||||
CMakeTargetNode(const Utils::FileName &directory, const QString &target);
|
||||
|
||||
static QByteArray generateId(const Utils::FileName &directory, const QString &target);
|
||||
static QString generateId(const Utils::FileName &directory, const QString &target);
|
||||
|
||||
void setTargetInformation(const QList<Utils::FileName> &artifacts, const QString &type);
|
||||
|
||||
@@ -80,6 +78,7 @@ public:
|
||||
|
||||
private:
|
||||
QString m_tooltip;
|
||||
QString m_target;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user