match the parameter name in the header to please gtk-doc.

2002-12-18  Sven Neumann  <sven@gimp.org>

	* libgimp/gimpgradientmenu.c (gimp_gradient_select_widget): match
	the parameter name in the header to please gtk-doc.

2002-12-18  Sven Neumann  <sven@gimp.org>

	* libgimp/libgimp-sections.txt: removed the functions Nathan added
	since the Makefile explicitely excludes them and they shouldn't
	show up in the docs until the API has settled and they are moved
	out of gimpmisc.h.

	* libgimp/tmpl/gimpmisc.sgml: regenerated.
This commit is contained in:
Sven Neumann 2002-12-18 13:56:48 +00:00 committed by Sven Neumann
parent 0f964b4fea
commit 5d1fac2a7c
5 changed files with 26 additions and 123 deletions

View File

@ -1,3 +1,8 @@
2002-12-18 Sven Neumann <sven@gimp.org>
* libgimp/gimpgradientmenu.c (gimp_gradient_select_widget): match
the parameter name in the header to please gtk-doc.
2002-12-17 Manish Singh <yosh@gimp.org>
* app/core/gimpenvirontable.[ch]: added some rudimentary support
@ -43,13 +48,6 @@
* libgimp/gimpmenu.h: fixed a typo
* devel-docs/libgimp/libgimp-sections.txt: did some rearranging,
added all unused functions (except for temporary ones)
* devel-docs/libgimp/tmpl/gimp.sgml
* devel-docs/libgimp/tmpl/gimpmenu.sgml
* devel-docs/libgimp/tmpl/gimpmisc.sgml: regenerated
2002-12-17 Nathan Summers <rock@gimp.org>
* libgimp/gimp.[ch]

View File

@ -1,3 +1,21 @@
2002-12-18 Sven Neumann <sven@gimp.org>
* libgimp/libgimp-sections.txt: removed the functions Nathan added
since the Makefile explicitely excludes them and they shouldn't
show up in the docs until the API has settled and they are moved
out of gimpmisc.h.
* libgimp/tmpl/gimpmisc.sgml: regenerated.
2002-12-17 Nathan Summers <rock@gimp.org>
* libgimp/libgimp-sections.txt: did some rearranging, added all
unused functions (except for temporary ones)
* libgimp/tmpl/gimp.sgml
* libgimp/tmpl/gimpmenu.sgml
* libgimp/tmpl/gimpmisc.sgml: regenerated.
2002-12-13 Sven Neumann <sven@gimp.org>
* libgimp/libgimp-sections.txt

View File

@ -399,18 +399,6 @@ gimp_message_set_handler
<SECTION>
<FILE>gimpmisc</FILE>
gimp_version
<SUBSECTION>
gimp_pixel_fetcher_new
gimp_pixel_fetcher_destroy
gimp_pixel_fetcher_get_pixel
gimp_pixel_fetcher_get_pixel2
gimp_pixel_fetcher_set_bg_color
GimpRgnFunc1
GimpRgnFunc2
gimp_rgn_iterate1
gimp_rgn_iterate2
<SUBSECTION>
gimp_get_bg_guchar
</SECTION>
<SECTION>

View File

@ -23,104 +23,3 @@ Miscellaneous functions: gimp_version.
@Returns:
<!-- ##### FUNCTION gimp_pixel_fetcher_new ##### -->
<para>
</para>
@drawable:
@Returns:
<!-- ##### FUNCTION gimp_pixel_fetcher_destroy ##### -->
<para>
</para>
@pf:
<!-- ##### FUNCTION gimp_pixel_fetcher_get_pixel ##### -->
<para>
</para>
@pf:
@x:
@y:
@pixel:
<!-- ##### FUNCTION gimp_pixel_fetcher_get_pixel2 ##### -->
<para>
</para>
@pf:
@x:
@y:
@wrapmode:
@pixel:
<!-- ##### FUNCTION gimp_pixel_fetcher_set_bg_color ##### -->
<para>
</para>
@pf:
<!-- ##### USER_FUNCTION GimpRgnFunc1 ##### -->
<para>
</para>
@src:
@bpp:
@Param3:
<!-- ##### USER_FUNCTION GimpRgnFunc2 ##### -->
<para>
</para>
@src:
@dest:
@bpp:
@Param4:
<!-- ##### FUNCTION gimp_rgn_iterate1 ##### -->
<para>
</para>
@drawable:
@run_mode:
@func:
@data:
<!-- ##### FUNCTION gimp_rgn_iterate2 ##### -->
<para>
</para>
@drawable:
@run_mode:
@func:
@data:
<!-- ##### FUNCTION gimp_get_bg_guchar ##### -->
<para>
</para>
@drawable:
@transparent:
@bg:

View File

@ -184,7 +184,7 @@ gradient_preview_callback (GtkWidget *widget,
/**
* gimp_gradient_select_widget:
* @dname: Title of the dialog to use. NULL means to use the default title.
* @gname: Title of the dialog to use. NULL means to use the default title.
* @igradient: Initial gradient name. NULL means to use current selection.
* @cback: a function to call when the selected gradient changes.
* @data: a pointer to arbitary data to be used in the call to @cback.
@ -196,7 +196,7 @@ gradient_preview_callback (GtkWidget *widget,
* Returns:A #GtkWidget that you can use in your UI.
*/
GtkWidget *
gimp_gradient_select_widget (gchar *dname,
gimp_gradient_select_widget (gchar *gname,
gchar *igradient,
GimpRunGradientCallback cback,
gpointer data)
@ -233,7 +233,7 @@ gimp_gradient_select_widget (gchar *dname,
gsel->data = data;
gsel->grad_data = NULL;
gsel->gradient_preview = gradient;
gsel->dname = dname;
gsel->dname = gname;
gsel->gradient_popup_pnt = NULL;
gsel->sample_size = CELL_SIZE_WIDTH;