Make gtk-doc happy:

2008-03-06  Johan Dahlin  <johan@gnome.org>

    Make gtk-doc happy:
    
    * gtk/gtkstyle.c: npoints->n_points.
    * gtk/gtktestutils.h: widget->spinner
    * gtk/gtktestutils.c: argc->argcp, argv->argvp


svn path=/trunk/; revision=19725
This commit is contained in:
Johan Dahlin 2008-03-06 23:21:26 +00:00 committed by Johan Dahlin
parent b68d7cc100
commit 6f9bcaa8b7
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2008-03-06 Johan Dahlin <johan@gnome.org>
Make gtk-doc happy:
* gtk/gtkstyle.c: npoints->n_points.
* gtk/gtktestutils.h: widget->spinner
* gtk/gtktestutils.c: argc->argcp, argv->argvp
2008-03-06 William Lachance <wrlach@gmail.com>
* gtk/gtkfilechooserdefault.c: Oops, forgot to make the raw "%H:%M"

View File

@ -5711,7 +5711,7 @@ gtk_paint_shadow (GtkStyle *style,
* @widget: the widget (may be %NULL)
* @detail: a style detail (may be %NULL)
* @points: an array of #GdkPoint<!-- -->s
* @npoints: length of @points
* @n_points: length of @points
* @fill: %TRUE if the polygon should be filled
*
* Draws a polygon on @window with the given parameters.

View File

@ -34,9 +34,9 @@
/* --- test utilities --- */
/**
* gtk_test_init:
* @argc: Address of the <parameter>argc</parameter> parameter of the
* @argcp: Address of the <parameter>argc</parameter> parameter of the
* main() function. Changed if any arguments were handled.
* @argv: Address of the <parameter>argv</parameter> parameter of main().
* @argvp: Address of the <parameter>argv</parameter> parameter of main().
* Any parameters understood by g_test_init() or gtk_init() are
* stripped before return.
*

View File

@ -45,7 +45,7 @@ GtkWidget* gtk_test_display_button_window (const gchar *window_title,
void gtk_test_slider_set_perc (GtkWidget *widget, /* GtkRange-alike */
double percentage);
double gtk_test_slider_get_value (GtkWidget *widget);
gboolean gtk_test_spin_button_click (GtkSpinButton *widget,
gboolean gtk_test_spin_button_click (GtkSpinButton *spinner,
guint button,
gboolean upwards);
gboolean gtk_test_widget_click (GtkWidget *widget,