From: dooglus Date: Thu, 15 Mar 2007 15:12:54 +0000 (+0000) Subject: One of the parameters was named incorrectly in the prototype of get_color() and the... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=2faf3310778c102003b3408b24fcc7968a854a4b;p=synfig.git One of the parameters was named incorrectly in the prototype of get_color() and the corresponding documentation. Fixed it to reduce the noise from doxygen (down from 790 lines of output to 664 lines now). git-svn-id: http://svn.voria.com/code@326 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/layer.h b/synfig-core/trunk/src/synfig/layer.h index 67894f3..f2d1c8b 100644 --- a/synfig-core/trunk/src/synfig/layer.h +++ b/synfig-core/trunk/src/synfig/layer.h @@ -390,13 +390,12 @@ public: ** \todo \a point should be of the type const Point \& */ virtual void set_time(Context context, Time time, const Point &point)const; - //! Gets the color of the Canvas at \a point + //! Gets the color of the Canvas at \a pos /*! \param context Context iterator refering to next Layer. - ** \param point Point which indicates where the desired Color should come from - ** \todo \a point should be of the type const Point \& + ** \param pos Point which indicates where the Color should come from ** \see Handle::get_color() */ - virtual Color get_color(Context context, const Point &point)const; + virtual Color get_color(Context context, const Point &pos)const; //! Renders the Canvas to the given Surface in an accelerated manner /*! \param context Context iterator refering to next Layer.