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:

committed by
Sven Neumann

parent
de3130ca10
commit
13b27c1948
10
ChangeLog
10
ChangeLog
@ -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):
|
||||
|
@ -80,7 +80,7 @@ gimp_brush_select_new (const gchar *title,
|
||||
{ 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,
|
||||
|
@ -64,7 +64,7 @@ gimp_font_select_new (const gchar *title,
|
||||
{
|
||||
{ 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,
|
||||
|
@ -66,10 +66,10 @@ 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, "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]" },
|
||||
"[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,
|
||||
|
@ -66,7 +66,7 @@ gimp_palette_select_new (const gchar *title,
|
||||
{ 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,
|
||||
|
@ -73,7 +73,7 @@ gimp_pattern_select_new (const gchar *title,
|
||||
{ GIMP_PDB_INT32, "mask len", "Length of 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,
|
||||
|
@ -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,
|
||||
|
Reference in New Issue
Block a user