diff options
| -rw-r--r-- | node/variablenode.cpp | 4 | ||||
| -rw-r--r-- | node/variablenode.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/node/variablenode.cpp b/node/variablenode.cpp index 0f5a0b0..d9dba5e 100644 --- a/node/variablenode.cpp +++ b/node/variablenode.cpp @@ -74,12 +74,12 @@ ExecutionNode* VariableNode::getCopy() const return node; } -qint64 VariableNode::getIndex() const +quint64 VariableNode::getIndex() const { return m_index; } -void VariableNode::setIndex(qint64 index) +void VariableNode::setIndex(quint64 index) { m_index= index; } diff --git a/node/variablenode.h b/node/variablenode.h index c26e60d..45133c6 100644 --- a/node/variablenode.h +++ b/node/variablenode.h @@ -19,8 +19,8 @@ public: * @return */ virtual ExecutionNode* getCopy() const; - qint64 getIndex() const; - void setIndex(qint64 index); + quint64 getIndex() const; + void setIndex(quint64 index); std::vector<ExecutionNode*>* getData() const; void setData(std::vector<ExecutionNode*>* data); |