From: dooglus Date: Thu, 15 Mar 2007 16:09:05 +0000 (+0000) Subject: Fixed the comment to stop doxygen complaining. Also, use the 2nd parameter to set... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;ds=inline;h=e1225f281625a058a1fc032dde0c8908553e3192;p=synfig.git Fixed the comment to stop doxygen complaining. Also, use the 2nd parameter to set the alpha. This function isn't currently called at all from anywhere as far as I can tell. git-svn-id: http://svn.voria.com/code@330 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/color.h b/synfig-core/trunk/src/synfig/color.h index 776d9d7..01fc720 100644 --- a/synfig-core/trunk/src/synfig/color.h +++ b/synfig-core/trunk/src/synfig/color.h @@ -216,10 +216,10 @@ public: g_(G), b_(B) { } - /*! \param C Source for color components + /*! \param c Source for color components ** \param A Opacity(alpha) */ Color(const Color& c, const value_type& A): - a_(c.a_), + a_(A), r_(c.r_), g_(c.g_), b_(c.b_) { }