Removed trailing whitespace.
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_gradientrotate.cpp
index 6eb1a1f..1fdb934 100644 (file)
@@ -5,16 +5,17 @@
 **     $Id: valuenode_gradientrotate.cpp,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $
 **
 **     \legal
-**     Copyright (c) 2002 Robert B. Quattlebaum Jr.
+**     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
 **
-**     This software and associated documentation
-**     are CONFIDENTIAL and PROPRIETARY property of
-**     the above-mentioned copyright holder.
+**     This package is free software; you can redistribute it and/or
+**     modify it under the terms of the GNU General Public License as
+**     published by the Free Software Foundation; either version 2 of
+**     the License, or (at your option) any later version.
 **
-**     You may not copy, print, publish, or in any
-**     other way distribute this software without
-**     a prior written agreement with
-**     the copyright holder.
+**     This package is distributed in the hope that it will be useful,
+**     but WITHOUT ANY WARRANTY; without even the implied warranty of
+**     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+**     General Public License for more details.
 **     \endlegal
 */
 /* ========================================================================= */
@@ -71,14 +72,14 @@ ValueNode_GradientRotate::create(const ValueBase& x)
        if(id!=ValueBase::TYPE_GRADIENT)
        {
                assert(0);
-               throw runtime_error("synfig::ValueNode_GradientRotate:Bad type "+ValueBase::type_name(id));                     
-       }               
+               throw runtime_error("synfig::ValueNode_GradientRotate:Bad type "+ValueBase::type_name(id));
+       }
 
        ValueNode_GradientRotate* value_node=new ValueNode_GradientRotate();
        value_node->set_gradient(ValueNode_Const::create(x.get(Gradient())));
 
        assert(value_node->get_type()==id);
-       
+
        return value_node;
 }
 
@@ -116,7 +117,7 @@ synfig::ValueNode_GradientRotate::operator()(Time t)const
        Gradient::iterator iter;
        for(iter=gradient.begin();iter!=gradient.end();++iter)
                iter->pos+=offset;
-       
+
        return gradient;
 }
 
@@ -169,7 +170,7 @@ ValueNode_GradientRotate::link_local_name(int i)const
                        return _("Offset");
        }
        return String();
-}      
+}
 
 String
 ValueNode_GradientRotate::link_name(int i)const
@@ -183,7 +184,7 @@ ValueNode_GradientRotate::link_name(int i)const
                        return "offset";
        }
        return String();
-}      
+}
 
 int
 ValueNode_GradientRotate::get_link_index_from_name(const String &name)const