From 103efc8d581218cb699f23b3022e32fd0e4772d8 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 25 Nov 2010 11:03:45 +0000 Subject: cppcheck: methods can be const --- basegfx/source/polygon/b2dpolypolygonrasterconverter.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basegfx') 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; } -- cgit