diff options
Diffstat (limited to 'range.cpp')
| -rw-r--r-- | range.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,9 +11,9 @@ void Range::setValue(qint64 s,qint64 e) m_end=e; } -bool Range::isValid(Die m) const +bool Range::isValid(Die* m) const { - if((m.getValue()>=m_start)&&(m.getValue()<=m_end)) + if((m->getValue()>=m_start)&&(m->getValue()<=m_end)) { return true; } |