From: dooglus Date: Thu, 15 Mar 2007 16:07:41 +0000 (+0000) Subject: Fixed the name of the last parameter in the set_time() prototype to match that of... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;ds=inline;h=d17bf9f954f58e640d42c2a2e2ff4cd65cd3795e;p=synfig.git Fixed the name of the last parameter in the set_time() prototype to match that of the parent class' prototype to stop doxygen complaining. git-svn-id: http://svn.voria.com/code@329 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/modules/lyr_std/import.h b/synfig-core/trunk/src/modules/lyr_std/import.h index 6b8e20b..1ffce2b 100644 --- a/synfig-core/trunk/src/modules/lyr_std/import.h +++ b/synfig-core/trunk/src/modules/lyr_std/import.h @@ -64,7 +64,7 @@ public: virtual void set_time(synfig::Context context, synfig::Time time)const; - virtual void set_time(synfig::Context context, synfig::Time time, const synfig::Point &pos)const; + virtual void set_time(synfig::Context context, synfig::Time time, const synfig::Point &point)const; }; /* === E N D =============================================================== */ diff --git a/synfig-core/trunk/src/synfig/layer_motionblur.h b/synfig-core/trunk/src/synfig/layer_motionblur.h index e728812..e65c249 100644 --- a/synfig-core/trunk/src/synfig/layer_motionblur.h +++ b/synfig-core/trunk/src/synfig/layer_motionblur.h @@ -56,7 +56,7 @@ public: virtual void set_time(Context context, Time time)const; - virtual void set_time(Context context, Time time, const Point &pos)const; + virtual void set_time(Context context, Time time, const Point &point)const; virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;