Removed trailing whitespace.
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / activepointseton.cpp
index 41ad8d2..0304efd 100644 (file)
@@ -76,7 +76,7 @@ Action::ParamVocab
 Action::ActivepointSetOn::get_param_vocab()
 {
        ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
-       
+
        ret.push_back(ParamDesc("value_desc",Param::TYPE_VALUEDESC)
                .set_local_name(_("ValueDesc"))
        );
@@ -90,7 +90,7 @@ Action::ActivepointSetOn::get_param_vocab()
                .set_local_name(_("Time"))
                .set_optional()
        );
-       
+
        return ret;
 }
 
@@ -121,26 +121,26 @@ Action::ActivepointSetOn::set_param(const synfig::String& name, const Action::Pa
        if(name=="value_desc" && param.get_type()==Param::TYPE_VALUEDESC)
        {
                value_desc=param.get_value_desc();
-               
+
                if(!value_desc.parent_is_value_node())
                        return false;
-               
+
                value_node=ValueNode_DynamicList::Handle::cast_dynamic(value_desc.get_parent_value_node());
-               
+
                if(!value_node)
                        return false;
-               
+
                index=value_desc.get_index();
-               
+
                if(time_set)
                        calc_activepoint();
-               
+
                return true;
        }
        if(name=="activepoint" && param.get_type()==Param::TYPE_ACTIVEPOINT && !time_set)
        {
                activepoint=param.get_activepoint();
-               
+
                return true;
        }
        if(name=="time" && param.get_type()==Param::TYPE_TIME && activepoint.get_time()==Time::begin()-1)
@@ -150,7 +150,7 @@ Action::ActivepointSetOn::set_param(const synfig::String& name, const Action::Pa
 
                if(value_node)
                        calc_activepoint();
-               
+
                return true;
        }
 
@@ -165,20 +165,20 @@ Action::ActivepointSetOn::is_ready()const
 
        if(activepoint.get_time()==(Time::begin()-1))
                synfig::error("Missing activepoint");
-       
+
        if(!value_node || activepoint.get_time()==(Time::begin()-1))
                return false;
        return Action::CanvasSpecific::is_ready();
 }
 
-// This function is called if a time is specified, but not 
+// This function is called if a time is specified, but not
 // a activepoint. In this case, we need to calculate the value
 // of the activepoint
 void
 Action::ActivepointSetOn::calc_activepoint()
-{      
+{
        const Time time(activepoint.get_time());
-       
+
        try { activepoint=*value_node->list[index].find(time); }
        catch(...)
        {
@@ -197,7 +197,7 @@ Action::ActivepointSetOn::prepare()
        activepoint.set_state(true);
 
        Action::Handle action(ActivepointSetSmart::create());
-       
+
        action->set_param("edit_mode",get_edit_mode());
        action->set_param("canvas",get_canvas());
        action->set_param("canvas_interface",get_canvas_interface());
@@ -209,5 +209,5 @@ Action::ActivepointSetOn::prepare()
                throw Error(Error::TYPE_NOTREADY);
 
        add_action_front(action);
-       
+
 }