libgimp/gimpbrushselect.c libgimp/gimpprogress.c

2007-01-03  Sven Neumann  <sven@gimp.org>

	* libgimp/gimpbrushselect.c
	* libgimp/gimpprogress.c
	* libgimp/gimpgradientselect.c
	* libgimp/gimpfontselect.c
	* libgimp/gimppatternselect.c
	* libgimp/gimppaletteselect.c: removed pointless and partly 
wrong
	information from gimp_install_temp_proc() calls.


svn path=/trunk/; revision=21637
This commit is contained in:
Sven Neumann 2007-01-03 14:34:50 +00:00 committed by Sven Neumann
parent de3130ca10
commit 13b27c1948
7 changed files with 59 additions and 49 deletions

View File

@ -1,3 +1,13 @@
2007-01-03 Sven Neumann <sven@gimp.org>
* libgimp/gimpbrushselect.c
* libgimp/gimpprogress.c
* libgimp/gimpgradientselect.c
* libgimp/gimpfontselect.c
* libgimp/gimppatternselect.c
* libgimp/gimppaletteselect.c: removed pointless and partly wrong
information from gimp_install_temp_proc() calls.
2007-01-03 Sven Neumann <sven@gimp.org>
* libgimp/gimpbrushselectbutton.c (gimp_brush_select_button_new):

View File

@ -71,16 +71,16 @@ gimp_brush_select_new (const gchar *title,
{
static const GimpParamDef args[] =
{
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_FLOAT, "opacity", "Opacity" },
{ GIMP_PDB_INT32, "spacing", "Spacing" },
{ GIMP_PDB_INT32, "paint mode", "Paint mode" },
{ GIMP_PDB_INT32, "mask width", "Brush width" },
{ GIMP_PDB_INT32, "mask height" "Brush heigth" },
{ GIMP_PDB_INT32, "mask len", "Length of brush mask data" },
{ GIMP_PDB_INT8ARRAY, "mask data", "The brush mask data" },
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_FLOAT, "opacity", "Opacity" },
{ GIMP_PDB_INT32, "spacing", "Spacing" },
{ GIMP_PDB_INT32, "paint mode", "Paint mode" },
{ GIMP_PDB_INT32, "mask width", "Brush width" },
{ GIMP_PDB_INT32, "mask height" "Brush heigth" },
{ GIMP_PDB_INT32, "mask len", "Length of brush mask data" },
{ GIMP_PDB_INT8ARRAY, "mask data", "The brush mask data" },
{ GIMP_PDB_INT32, "dialog status", "If the dialog was closing "
"[0 = No, 1 = Yes]" },
"[0 = No, 1 = Yes]" }
};
gchar *brush_callback = gimp_procedural_db_temp_name ();
@ -88,11 +88,11 @@ gimp_brush_select_new (const gchar *title,
gimp_install_temp_proc (brush_callback,
"Temporary brush popup callback procedure",
"",
"Andy Thomas",
"Andy Thomas",
"1997",
"",
"",
"",
NULL,
"RGB*, GRAY*",
"",
GIMP_TEMPORARY,
G_N_ELEMENTS (args), 0,
args, NULL,

View File

@ -62,9 +62,9 @@ gimp_font_select_new (const gchar *title,
{
static const GimpParamDef args[] =
{
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_INT32, "dialog status", "If the dialog was closing "
"[0 = No, 1 = Yes]" },
"[0 = No, 1 = Yes]" }
};
gchar *font_callback = gimp_procedural_db_temp_name ();
@ -72,11 +72,11 @@ gimp_font_select_new (const gchar *title,
gimp_install_temp_proc (font_callback,
"Temporary font popup callback procedure",
"",
"Andy Thomas",
"Andy Thomas",
"1997",
"",
"",
"",
NULL,
"RGB*, GRAY*",
"",
GIMP_TEMPORARY,
G_N_ELEMENTS (args), 0,
args, NULL,

View File

@ -65,11 +65,11 @@ gimp_gradient_select_new (const gchar *title,
{
static const GimpParamDef args[] =
{
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_INT32, "grad width", "Gradient width" },
{ GIMP_PDB_FLOATARRAY,"grad data", "The gradient mask data" },
{ GIMP_PDB_INT32, "dialog status", "If the dialog was closing "
"[0 = No, 1 = Yes]" },
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_INT32, "gradient width", "Gradient width" },
{ GIMP_PDB_FLOATARRAY,"gradient data", "The gradient mask data" },
{ GIMP_PDB_INT32, "dialog status", "If the dialog was closing "
"[0 = No, 1 = Yes]" }
};
gchar *gradient_callback = gimp_procedural_db_temp_name ();
@ -77,11 +77,11 @@ gimp_gradient_select_new (const gchar *title,
gimp_install_temp_proc (gradient_callback,
"Temporary gradient popup callback procedure",
"",
"Andy Thomas",
"Andy Thomas",
"1997",
"",
"",
"",
NULL,
"RGB*, GRAY*",
"",
GIMP_TEMPORARY,
G_N_ELEMENTS (args), 0,
args, NULL,

View File

@ -63,10 +63,10 @@ gimp_palette_select_new (const gchar *title,
{
static const GimpParamDef args[] =
{
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_INT32, "num colors", "Number of colors" },
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_INT32, "num colors", "Number of colors" },
{ GIMP_PDB_INT32, "dialog status", "If the dialog was closing "
"[0 = No, 1 = Yes]" },
"[0 = No, 1 = Yes]" }
};
gchar *palette_callback = gimp_procedural_db_temp_name ();
@ -74,11 +74,11 @@ gimp_palette_select_new (const gchar *title,
gimp_install_temp_proc (palette_callback,
"Temporary palette popup callback procedure",
"",
"Michael Natterer",
"Michael Natterer",
"2004",
"",
"",
"",
NULL,
"RGB*, GRAY*",
"",
GIMP_TEMPORARY,
G_N_ELEMENTS (args), 0,
args, NULL,

View File

@ -66,14 +66,14 @@ gimp_pattern_select_new (const gchar *title,
{
static const GimpParamDef args[] =
{
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_INT32, "mask width", "Pattern width" },
{ GIMP_PDB_INT32, "mask height", "Pattern heigth" },
{ GIMP_PDB_INT32, "mask bpp", "Pattern bytes per pixel" },
{ GIMP_PDB_STRING, "str", "String" },
{ GIMP_PDB_INT32, "mask width", "Pattern width" },
{ GIMP_PDB_INT32, "mask height", "Pattern heigth" },
{ GIMP_PDB_INT32, "mask bpp", "Pattern bytes per pixel" },
{ GIMP_PDB_INT32, "mask len", "Length of pattern mask data" },
{ GIMP_PDB_INT8ARRAY,"mask data", "The pattern mask data" },
{ GIMP_PDB_INT8ARRAY,"mask data", "The pattern mask data" },
{ GIMP_PDB_INT32, "dialog status", "If the dialog was closing "
"[0 = No, 1 = Yes]" },
"[0 = No, 1 = Yes]" }
};
gchar *pattern_callback = gimp_procedural_db_temp_name ();
@ -81,11 +81,11 @@ gimp_pattern_select_new (const gchar *title,
gimp_install_temp_proc (pattern_callback,
"Temporary pattern popup callback procedure",
"",
"Andy Thomas",
"Andy Thomas",
"1997",
"",
"",
"",
NULL,
"RGB*, GRAY*",
"",
GIMP_TEMPORARY,
G_N_ELEMENTS (args), 0,
args, NULL,

View File

@ -136,11 +136,11 @@ gimp_progress_install_vtable (const GimpProgressVtable *vtable,
gimp_install_temp_proc (progress_callback,
"Temporary progress callback procedure",
"",
"Michael Natterer <mitch@gimp.org>",
"Michael Natterer",
"2004",
"",
"",
"",
NULL,
"RGB*, GRAY*, INDEXED*",
"",
GIMP_TEMPORARY,
G_N_ELEMENTS (args), G_N_ELEMENTS (values),
args, values,