X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fsynfigapp%2Factions%2Fblinepointtangentmerge.cpp;h=bb20fe0d04a9af19ffdcbbc75356fdafd0c96c9e;hb=39997fbd501b843f90178edfad577628f2ae7b20;hp=8556af9ebf3870a2965e45780a89da01b3b86852;hpb=8ef042c40521681cea99944097c4f90a5ac6cf74;p=synfig.git diff --git a/synfig-studio/trunk/src/synfigapp/actions/blinepointtangentmerge.cpp b/synfig-studio/trunk/src/synfigapp/actions/blinepointtangentmerge.cpp index 8556af9..bb20fe0 100644 --- a/synfig-studio/trunk/src/synfigapp/actions/blinepointtangentmerge.cpp +++ b/synfig-studio/trunk/src/synfigapp/actions/blinepointtangentmerge.cpp @@ -6,7 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley -** Copyright (c) 2007 Chris Moore +** Copyright (c) 2007, 2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -51,8 +51,8 @@ using namespace Action; /* === M A C R O S ========================================================= */ -ACTION_INIT(Action::BLinePointTangentMerge); -ACTION_SET_NAME(Action::BLinePointTangentMerge,"bline_point_tangent_merge"); +ACTION_INIT_NO_GET_LOCAL_NAME(Action::BLinePointTangentMerge); +ACTION_SET_NAME(Action::BLinePointTangentMerge,"BLinePointTangentMerge"); ACTION_SET_LOCAL_NAME(Action::BLinePointTangentMerge,N_("Merge Tangents")); ACTION_SET_TASK(Action::BLinePointTangentMerge,"merge"); ACTION_SET_CATEGORY(Action::BLinePointTangentMerge,Action::CATEGORY_VALUENODE); @@ -72,6 +72,12 @@ Action::BLinePointTangentMerge::BLinePointTangentMerge() set_dirty(true); } +synfig::String +Action::BLinePointTangentMerge::get_local_name()const +{ + return strprintf(_("Merge Tangents of '%s'"), ((ValueNode::Handle)(value_node))->get_description().c_str()); +} + Action::ParamVocab Action::BLinePointTangentMerge::get_param_vocab() { @@ -145,7 +151,7 @@ Action::BLinePointTangentMerge::prepare() Action::Handle action; - action=Action::create("value_desc_set"); + action=Action::create("ValueDescSet"); if(!action) throw Error(_("Couldn't find action \"value_desc_set\""));