data: Renamed Global to GlobalVariable in Graph

This commit is contained in:
Eberhard Graether
2014-07-01 11:13:27 +02:00
parent cf6d17584f
commit b72584559c
5 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ void Storage::onGlobalVariableParsed(const ParseLocation& location, const ParseV
log("global", variable.fullName, location);
Node* node = m_graph.createNodeHierarchy(variable.fullName);
node->setType(Node::NODE_GLOBAL);
node->setType(Node::NODE_GLOBAL_VARIABLE);
node->setConst(variable.isConst);
node->setStatic(variable.isStatic);