Oops. Need to specify both pdb-skip and skip.

2006-10-25  Simon Budig  <simon@gimp.org>

	* app/vectors/vectors-enums.h: Oops. Need to specify both
	pdb-skip and skip.

	* libgimp/gimp.def
	* libgimpconfig/gimpconfig.def
	* libgimpmath/gimpmath.def
	* libgimpthumb/gimpthumb.def
	* libgimpwidgets/gimpwidgets.def: .def-file maintenance. Hope my
	changes are correct...

	With the help from
	   nm .libs/libgimpfoo-2.0.so |\
	   sed -ne "s/.* T \([a-zA-Z0-9][a-zA-Z0-9_]*\)/\t\1/p" |\
	   (echo EXPORTS ; LC_ALL=C sort )

	* libgimpwidgets/gimppageselector.c: marked stretch_frame_image()
	as static.

	* libgimp/gimpenums.c.tail
	* libgimp/gimpenums.h
	* tools/pdbgen/enums.pl: regenerated.

	* devel-docs/libgimp/tmpl/gimpfontselectbutton.sgml: this changed
	again. WTF?
This commit is contained in:
Simon Budig
2006-10-25 16:55:20 +00:00
committed by Simon Budig
parent 388c070915
commit a8593d8141
12 changed files with 78 additions and 110 deletions

View File

@ -276,6 +276,8 @@ EXPORTS
gimp_gradients_sample_uniform
gimp_gradients_set_gradient
gimp_gradients_set_popup
gimp_heal
gimp_heal_default
gimp_help
gimp_histogram
gimp_histogram_channel_get_type
@ -292,6 +294,7 @@ EXPORTS
gimp_image_convert_grayscale
gimp_image_convert_indexed
gimp_image_convert_rgb
gimp_image_convert_set_dither_matrix
gimp_image_crop
gimp_image_delete
gimp_image_delete_guide
@ -621,6 +624,7 @@ EXPORTS
gimp_vectors_parasite_detach
gimp_vectors_parasite_find
gimp_vectors_parasite_list
gimp_vectors_remove_stroke
gimp_vectors_set_linked
gimp_vectors_set_name
gimp_vectors_set_tattoo
@ -628,8 +632,8 @@ EXPORTS
gimp_vectors_stroke_close
gimp_vectors_stroke_get_length
gimp_vectors_stroke_get_point_at_dist
gimp_vectors_stroke_get_points
gimp_vectors_stroke_interpolate
gimp_vectors_stroke_remove
gimp_vectors_stroke_scale
gimp_vectors_stroke_translate
gimp_vectors_to_selection

View File

@ -4,8 +4,6 @@ typedef GType (* GimpGetTypeFunc) (void);
static const GimpGetTypeFunc get_type_funcs[] =
{
gimp_add_mask_type_get_type,
gimp_anchor_feature_type_get_type,
gimp_anchor_type_get_type,
gimp_blend_mode_get_type,
gimp_brush_application_mode_get_type,
gimp_brush_generated_shape_get_type,
@ -50,15 +48,12 @@ static const GimpGetTypeFunc get_type_funcs[] =
gimp_stack_trace_mode_get_type,
gimp_transfer_mode_get_type,
gimp_transform_direction_get_type,
gimp_vector_extend_mode_get_type,
gimp_vectors_stroke_type_get_type
};
static const gchar * const type_names[] =
{
"GimpAddMaskType",
"GimpAnchorFeatureType",
"GimpAnchorType",
"GimpBlendMode",
"GimpBrushApplicationMode",
"GimpBrushGeneratedShape",
@ -103,7 +98,6 @@ static const gchar * const type_names[] =
"GimpStackTraceMode",
"GimpTransferMode",
"GimpTransformDirection",
"GimpVectorExtendMode",
"GimpVectorsStrokeType"
};

View File

@ -25,30 +25,6 @@
G_BEGIN_DECLS
#define GIMP_TYPE_ANCHOR_FEATURE_TYPE (gimp_anchor_feature_type_get_type ())
GType gimp_anchor_feature_type_get_type (void) G_GNUC_CONST;
typedef enum
{
GIMP_ANCHOR_FEATURE_NONE,
GIMP_ANCHOR_FEATURE_EDGE,
GIMP_ANCHOR_FEATURE_ALIGNED,
GIMP_ANCHOR_FEATURE_SYMMETRIC
} GimpAnchorFeatureType;
#define GIMP_TYPE_ANCHOR_TYPE (gimp_anchor_type_get_type ())
GType gimp_anchor_type_get_type (void) G_GNUC_CONST;
typedef enum
{
GIMP_ANCHOR_ANCHOR,
GIMP_ANCHOR_CONTROL
} GimpAnchorType;
#define GIMP_TYPE_BRUSH_APPLICATION_MODE (gimp_brush_application_mode_get_type ())
GType gimp_brush_application_mode_get_type (void) G_GNUC_CONST;
@ -299,17 +275,6 @@ typedef enum
} GimpSelectCriterion;
#define GIMP_TYPE_VECTOR_EXTEND_MODE (gimp_vector_extend_mode_get_type ())
GType gimp_vector_extend_mode_get_type (void) G_GNUC_CONST;
typedef enum
{
EXTEND_SIMPLE,
EXTEND_EDITABLE
} GimpVectorExtendMode;
void gimp_enums_init (void);
const gchar ** gimp_enums_get_type_names (gint *n_type_names);