summaryrefslogtreecommitdiff
path: root/cppcanvas
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-11-25 11:09:38 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-11-25 16:02:40 +0000
commit753a2faaa6ede91b7b3f98dcc32b4c075d7c19f9 (patch)
tree1af3c605512315b720f11be73439a66c7ee34cd5 /cppcanvas
parent103efc8d581218cb699f23b3022e32fd0e4772d8 (diff)
cppcheck: methods can be const
Diffstat (limited to 'cppcanvas')
-rw-r--r--cppcanvas/source/mtfrenderer/emfplus.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppcanvas/source/mtfrenderer/emfplus.cxx b/cppcanvas/source/mtfrenderer/emfplus.cxx
index a1f7d985e3ce..2059aaec486b 100644
--- a/cppcanvas/source/mtfrenderer/emfplus.cxx
+++ b/cppcanvas/source/mtfrenderer/emfplus.cxx
@@ -341,8 +341,8 @@ namespace cppcanvas
}
}
- UINT32 GetType () { return type; }
- const ::Color& GetColor () { return solidColor; }
+ UINT32 GetType() const { return type; }
+ const ::Color& GetColor() const { return solidColor; }
void Read (SvStream& s, ImplRenderer& rR)
{