One of the parameters was named incorrectly in the prototype of get_color() and the...
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 15 Mar 2007 15:12:54 +0000 (15:12 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 15 Mar 2007 15:12:54 +0000 (15:12 +0000)
git-svn-id: http://svn.voria.com/code@326 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/layer.h

index 67894f3..f2d1c8b 100644 (file)
@@ -390,13 +390,12 @@ public:
        **      \todo \a point should be of the type <tt>const Point \&</tt> */
        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 <tt>const Point \&</tt>
+       **      \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.