cppcheck: methods can be const

This commit is contained in:
Caolán McNamara 2010-11-25 11:09:38 +00:00
parent 103efc8d58
commit 753a2faaa6

View File

@ -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)
{