From 753a2faaa6ede91b7b3f98dcc32b4c075d7c19f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Thu, 25 Nov 2010 11:09:38 +0000 Subject: [PATCH] cppcheck: methods can be const --- cppcanvas/source/mtfrenderer/emfplus.cxx | 4 ++-- 1 file 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) {