plug-ins/FractalExplorer/FractalExplorer.c
2004-05-07 Michael Natterer <mitch@gimp.org> * plug-ins/FractalExplorer/FractalExplorer.c * plug-ins/Lighting/lighting_main.c * plug-ins/MapObject/mapobject_main.c * plug-ins/dbbrowser/dbbrowser.c * plug-ins/flame/flame.c * plug-ins/gimpressionist/gimp.c * plug-ins/ifscompose/ifscompose.c * plug-ins/imagemap/imap_main.c * plug-ins/maze/maze.c * plug-ins/pagecurl/pagecurl.c * plug-ins/print/print.c * plug-ins/rcm/rcm.c * plug-ins/winsnap/winsnap.c * plug-ins/common/[g-z]*.c: use gimp_plugin_menu_register(). Some formatting cleanups in some query() functions.
This commit is contained in:
committed by
Michael Natterer
parent
9b7196a0b7
commit
bbeef1a8d2
@ -68,8 +68,8 @@ query (void)
|
||||
{
|
||||
static GimpParamDef args[] =
|
||||
{
|
||||
{ GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive" },
|
||||
{ GIMP_PDB_IMAGE, "image", "Input image" },
|
||||
{ GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive" },
|
||||
{ GIMP_PDB_IMAGE, "image", "Input image" },
|
||||
{ GIMP_PDB_DRAWABLE, "drawable", "Input drawable" }
|
||||
};
|
||||
|
||||
@ -87,11 +87,14 @@ query (void)
|
||||
"Adam D. Moss, Federico Mena Quintero",
|
||||
"Adam D. Moss, Federico Mena Quintero",
|
||||
"1997",
|
||||
N_("<Image>/Layer/Colors/Auto/_Normalize"),
|
||||
N_("_Normalize"),
|
||||
"RGB*, GRAY*, INDEXED*",
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_normalize",
|
||||
N_("<Image>/Layer/Colors/Auto"));
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user