app/tools/gimpmeasuretool.h fixed _GET_OPTIONS() macros.

2006-09-13  Michael Natterer  <mitch@gimp.org>

	* app/tools/gimpmeasuretool.h
	* app/tools/gimppainttool.h: fixed _GET_OPTIONS() macros.
This commit is contained in:
Michael Natterer 2006-09-13 10:44:40 +00:00 committed by Michael Natterer
parent bd754a97b0
commit 0a341138e2
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-09-13 Michael Natterer <mitch@gimp.org>
* app/tools/gimpmeasuretool.h
* app/tools/gimppainttool.h: fixed _GET_OPTIONS() macros.
2006-09-13 Sven Neumann <sven@gimp.org>
* app/tools/gimpblendtool.c (gimp_blend_tool_active_modifier_key):

View File

@ -42,7 +42,7 @@ typedef enum
#define GIMP_IS_MEASURE_TOOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_MEASURE_TOOL))
#define GIMP_MEASURE_TOOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_MEASURE_TOOL, GimpMeasureToolClass))
#define GIMP_MEASURE_TOOL_GET_OPTIONS(t) (GIMP_MEASURE_OPTIONS (gimp_tool_get_options (GIMP_TOOL (tool))))
#define GIMP_MEASURE_TOOL_GET_OPTIONS(t) (GIMP_MEASURE_OPTIONS (gimp_tool_get_options (GIMP_TOOL (t))))
typedef struct _GimpMeasureTool GimpMeasureTool;

View File

@ -30,7 +30,7 @@
#define GIMP_IS_PAINT_TOOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_PAINT_TOOL))
#define GIMP_PAINT_TOOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_PAINT_TOOL, GimpPaintToolClass))
#define GIMP_PAINT_TOOL_GET_OPTIONS(t) (GIMP_PAINT_OPTIONS (gimp_tool_get_options (GIMP_TOOL (tool))))
#define GIMP_PAINT_TOOL_GET_OPTIONS(t) (GIMP_PAINT_OPTIONS (gimp_tool_get_options (GIMP_TOOL (t))))
typedef struct _GimpPaintToolClass GimpPaintToolClass;