diff options
| author | 2018-12-14 23:48:52 +0100 | |
|---|---|---|
| committer | 2018-12-15 02:18:16 +0100 | |
| commit | 6204fbaab592179f0556eb673c61fa3d3313d2a7 (patch) | |
| tree | 5b8b143428adb3eb89903d88a6f6e0b48bf6b7bd /range.h | |
| parent | 27709cc074cf34a866e0f57e2546e1e1bdf708b7 (diff) | |
| download | OneRoll-6204fbaab592179f0556eb673c61fa3d3313d2a7.tar.gz OneRoll-6204fbaab592179f0556eb673c61fa3d3313d2a7.zip | |
List operator fix of range.
Diffstat (limited to 'range.h')
| -rw-r--r-- | range.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -49,8 +49,8 @@ public: virtual Validator* getCopy() const; private: - qint64 m_start; - qint64 m_end; + qint64 m_start = 0; + qint64 m_end = 0; bool m_hasEnd; bool m_hasStart; bool m_emptyRange; |