remove GimpPlugInDebug typedef.

2007-08-15  Michael Natterer  <mitch@gimp.org>

	* app/core/core-types.h: remove GimpPlugInDebug typedef.

	* app/plug-in/plug-in-types.h: added it here instead.

	* app/core/gimpchannel-combine.h
	* app/widgets/gimppropwidgets.[ch]: match parameter names
	in .c, .h and API docs to make gtk-doc happy.


svn path=/trunk/; revision=23275
This commit is contained in:
Michael Natterer 2007-08-15 16:40:39 +00:00 committed by Michael Natterer
parent ebf2e9a0ba
commit da32f5a002
6 changed files with 20 additions and 11 deletions

View File

@ -1,3 +1,13 @@
2007-08-15 Michael Natterer <mitch@gimp.org>
* app/core/core-types.h: remove GimpPlugInDebug typedef.
* app/plug-in/plug-in-types.h: added it here instead.
* app/core/gimpchannel-combine.h
* app/widgets/gimppropwidgets.[ch]: match parameter names
in .c, .h and API docs to make gtk-doc happy.
2007-08-15 Joao S. O. Bueno Calligaris <gwidion@mpc.com.br>
* plug-ins/pygimp/pygimp-drawable.c: avoids function call

View File

@ -159,7 +159,6 @@ typedef struct _GimpGradientSegment GimpGradientSegment;
typedef struct _GimpSamplePoint GimpSamplePoint;
typedef guint32 GimpTattoo;
typedef struct _GimpPaletteEntry GimpPaletteEntry;
typedef struct _GimpPlugInDebug GimpPlugInDebug;
typedef struct _GimpScanConvert GimpScanConvert;

View File

@ -45,10 +45,10 @@ void gimp_channel_combine_ellipse (GimpChannel *mask,
gboolean antialias);
void gimp_channel_combine_ellipse_rect (GimpChannel *mask,
GimpChannelOps op,
gint rect_x,
gint rect_y,
gint rect_w,
gint rect_h,
gint x,
gint y,
gint w,
gint h,
gdouble a,
gdouble b,
gboolean antialias);

View File

@ -26,6 +26,7 @@
typedef struct _GimpPlugIn GimpPlugIn;
typedef struct _GimpPlugInDebug GimpPlugInDebug;
typedef struct _GimpPlugInDef GimpPlugInDef;
typedef struct _GimpPlugInManager GimpPlugInManager;
typedef struct _GimpPlugInMenuBranch GimpPlugInMenuBranch;

View File

@ -478,8 +478,7 @@ gimp_prop_number_pair_entry_data_free (GimpPropNumberPairEntryData *data)
}
static void gimp_prop_number_pair_entry_config_notify
(GObject *config,
static void gimp_prop_number_pair_entry_config_notify (GObject *config,
GParamSpec *param_spec,
GtkEntry *entry);
static void gimp_prop_number_pair_entry_number_pair_numbers_changed
@ -501,7 +500,7 @@ static void gimp_prop_number_pair_entry_number_pair_user_override_notify
* @user_override_property: Name of boolean property for user override mode.
* @connect_numbers_changed: %TRUE to connect to the widgets "numbers-changed"
* signal, %FALSE to not connect.
* @connect_numbers_changed: %TRUE to connect to the widgets "ratio-changed"
* @connect_ratio_changed: %TRUE to connect to the widgets "ratio-changed"
* signal, %FALSE to not connect.
* @separators:
* @allow_simplification:

View File

@ -63,9 +63,9 @@ GtkWidget * gimp_prop_number_pair_entry_new
(GObject *config,
const gchar *left_number_property,
const gchar *right_number_property,
const gchar *default_numerator_property,
const gchar *default_denominator_property,
const gchar *overridden_fixed_aspect_property,
const gchar *default_left_number_property,
const gchar *default_right_number_property,
const gchar *user_override_property,
gboolean connect_numbers_changed,
gboolean connect_ratio_changed,
const gchar *separators,