From 2de5439047f081e585d13df926b6cbc2103b49e4 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 9 Oct 2013 21:28:18 +0200 Subject: [PATCH] [DEBUG] coding style --- agg/agg_color_rgba.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/agg/agg_color_rgba.h b/agg/agg_color_rgba.h index 2e98b9d..a372ab0 100644 --- a/agg/agg_color_rgba.h +++ b/agg/agg_color_rgba.h @@ -33,7 +33,7 @@ namespace agg } namespace draw { - void ParseColor(const char* _input, struct agg::rgba8& color); + void parseColor(const char* _input, struct agg::rgba8& color); } #include @@ -435,7 +435,7 @@ namespace agg // parse a color whith a name or special Format: AGG_INLINE void Set(const char * _input) { - draw::ParseColor(_input, *this); + draw::parseColor(_input, *this); }; uint32_t Get(void) const @@ -463,7 +463,7 @@ namespace agg }; self_type & operator=(const char* _input) { - draw::ParseColor(_input, *this); + draw::parseColor(_input, *this); return *this; }; bool operator==(const self_type& _input) const