diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-25 11:03:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-25 16:02:40 +0000 |
commit | 103efc8d581218cb699f23b3022e32fd0e4772d8 (patch) | |
tree | de8d5d82e174539f370e701cd532f63a87ff45c6 /basegfx/source | |
parent | 6c1779cedf60353cf4fcb109b71a632d4008720a (diff) |
cppcheck: methods can be const
Diffstat (limited to 'basegfx/source')
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx b/basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx index 421ec9c43078..d6e1dee3fe6c 100644 --- a/basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx +++ b/basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx @@ -350,12 +350,12 @@ namespace basegfx return 0.0f; } - bool isEnded() + bool isEnded() const { return mnYCounter<=0; } - bool isDownwards() + bool isDownwards() const { return mbDownwards; } |