compile fix, changed member to be declared const

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10896 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2005-01-20 13:49:15 +00:00
parent 838f42e799
commit 547fd34504
+2 -2
View File
@@ -1363,7 +1363,7 @@ namespace agg
typedef typename base_ren_type::color_type color_type; typedef typename base_ren_type::color_type color_type;
//--------------------------------------------------------------------- //---------------------------------------------------------------------
renderer_outline_aa(base_ren_type& ren, line_profile_aa& prof) : renderer_outline_aa(base_ren_type& ren, const line_profile_aa& prof) :
m_ren(&ren), m_ren(&ren),
m_profile(&prof) m_profile(&prof)
{ {
@@ -1534,7 +1534,7 @@ namespace agg
private: private:
base_ren_type* m_ren; base_ren_type* m_ren;
line_profile_aa* m_profile; const line_profile_aa* m_profile;
color_type m_color; color_type m_color;
}; };