Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / modules / mod_gradient / lineargradient.cpp
index 603e761..be7155a 100644 (file)
@@ -1,6 +1,6 @@
 /* === S Y N F I G ========================================================= */
 /*!    \file lineargradient.cpp
-**     \brief Template Header
+**     \brief Implementation of the "Linear Gradient" layer
 **
 **     $Id$
 **
@@ -50,8 +50,8 @@
 
 SYNFIG_LAYER_INIT(LinearGradient);
 SYNFIG_LAYER_SET_NAME(LinearGradient,"linear_gradient");
-SYNFIG_LAYER_SET_LOCAL_NAME(LinearGradient,_("Linear Gradient"));
-SYNFIG_LAYER_SET_CATEGORY(LinearGradient,_("Gradients"));
+SYNFIG_LAYER_SET_LOCAL_NAME(LinearGradient,N_("Linear Gradient"));
+SYNFIG_LAYER_SET_CATEGORY(LinearGradient,N_("Gradients"));
 SYNFIG_LAYER_SET_VERSION(LinearGradient,"0.0");
 SYNFIG_LAYER_SET_CVS_ID(LinearGradient,"$Id$");
 
@@ -118,7 +118,7 @@ LinearGradient::color_func(const Point &point, float supersample)const
 }
 
 float
-LinearGradient::calc_supersample(const synfig::Point &x, float pw,float ph)const
+LinearGradient::calc_supersample(const synfig::Point &/*x*/, float pw,float /*ph*/)const
 {
        return pw/(p2-p1).mag();
 }