diff options
| author | 2019-09-24 13:41:28 +0200 | |
|---|---|---|
| committer | 2019-09-24 23:04:27 +0200 | |
| commit | a1c3be28ef55cc28be06f456e1736df3ffbe87ec (patch) | |
| tree | 1ca873a904d9c9bb40765e5a3c6da4ead55d7566 /node/variablenode.cpp | |
| parent | bec6706b14525e5b886a8551bf6c644a828d635a (diff) | |
| download | OneRoll-a1c3be28ef55cc28be06f456e1736df3ffbe87ec.tar.gz OneRoll-a1c3be28ef55cc28be06f456e1736df3ffbe87ec.zip | |
Change index API from qint64 to quint64
Diffstat (limited to 'node/variablenode.cpp')
| -rw-r--r-- | node/variablenode.cpp | 4 |
1 files changed, 2 insertions, 2 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; } |