X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fsynfigapp%2Factions%2Flayeractivate.cpp;h=c7fbc30adb50582fd27c35925ee1b29932bdd1c4;hb=756c0d29ac1742f231e6615f9a577e574e35a4af;hp=5d5937ccfaa01043f9abcde2bcb37e761f34dc70;hpb=837b63e9fb829d66d43f4f169861f8979f76820d;p=synfig.git diff --git a/synfig-studio/trunk/src/synfigapp/actions/layeractivate.cpp b/synfig-studio/trunk/src/synfigapp/actions/layeractivate.cpp index 5d5937c..c7fbc30 100644 --- a/synfig-studio/trunk/src/synfigapp/actions/layeractivate.cpp +++ b/synfig-studio/trunk/src/synfigapp/actions/layeractivate.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 @@ -32,6 +33,8 @@ #include "layeractivate.h" #include +#include + #endif using namespace std; @@ -41,13 +44,10 @@ using namespace synfigapp; using namespace Action; /* === M A C R O S ========================================================= */ -#define ACTION_INIT2(class) \ - Action::Base* class::create() { return new class(); } \ - synfig::String class::get_name()const { return name__; } -ACTION_INIT2(Action::LayerActivate); +ACTION_INIT_NO_GET_LOCAL_NAME(Action::LayerActivate); ACTION_SET_NAME(Action::LayerActivate,"layer_activate"); -ACTION_SET_LOCAL_NAME(Action::LayerActivate,_("Activate Layer")); +ACTION_SET_LOCAL_NAME(Action::LayerActivate,N_("Activate Layer")); ACTION_SET_TASK(Action::LayerActivate,"activate"); ACTION_SET_CATEGORY(Action::LayerActivate,Action::CATEGORY_LAYER); ACTION_SET_PRIORITY(Action::LayerActivate,0); @@ -69,13 +69,12 @@ Action::LayerActivate::get_local_name()const { if(!layer) return _("Activate Layer"); - String name; - if(layer->get_description().empty()) - name=layer->get_local_name(); - else - name=layer->get_description(); - return (new_status?_("Activate "):_("Deactivate "))+name; + return strprintf("%s '%s'", + new_status + ? _("Activate Layer") + : _("Deactivate Layer"), + layer->get_non_empty_description().c_str()); } Action::ParamVocab