X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fsynfigapp%2Factions%2Flayerremove.cpp;h=0cf2a1785b1146703daf3cf578a12dc311be918c;hb=756c0d29ac1742f231e6615f9a577e574e35a4af;hp=ed8d4b19207ce8ebc186f92104f0f01b337462ba;hpb=8ef042c40521681cea99944097c4f90a5ac6cf74;p=synfig.git diff --git a/synfig-studio/trunk/src/synfigapp/actions/layerremove.cpp b/synfig-studio/trunk/src/synfigapp/actions/layerremove.cpp index ed8d4b1..0cf2a17 100644 --- a/synfig-studio/trunk/src/synfigapp/actions/layerremove.cpp +++ b/synfig-studio/trunk/src/synfigapp/actions/layerremove.cpp @@ -6,6 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 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 @@ -44,7 +45,7 @@ using namespace Action; /* === M A C R O S ========================================================= */ -ACTION_INIT(Action::LayerRemove); +ACTION_INIT_NO_GET_LOCAL_NAME(Action::LayerRemove); ACTION_SET_NAME(Action::LayerRemove,"layer_remove"); ACTION_SET_LOCAL_NAME(Action::LayerRemove,N_("Remove Layer")); ACTION_SET_TASK(Action::LayerRemove,"remove"); @@ -63,6 +64,12 @@ Action::LayerRemove::LayerRemove() { } +synfig::String +Action::LayerRemove::get_local_name()const +{ + return get_layer_descriptions(layer_list, _("Remove Layer"), _("Remove Layers")); +} + Action::ParamVocab Action::LayerRemove::get_param_vocab() { @@ -122,7 +129,7 @@ Action::LayerRemove::perform() // If we couldn't find the layer in the canvas, then bail if(*iter2!=layer) { - /*! \fixme We should really undo all prior removals + /*! \todo We should really undo all prior removals ** before we go throwing shit around */ throw Error(_("This layer doesn't exist anymore.")); } @@ -132,7 +139,7 @@ Action::LayerRemove::perform() // bail if(get_canvas()!=subcanvas && !subcanvas->is_inline()) { - /*! \fixme We should really undo all prior removals + /*! \todo We should really undo all prior removals ** before we go throwing shit around */ throw Error(_("This layer doesn't belong to this canvas anymore")); }