No need to expose definitions of GimpCropTool or GimpCropToolClass.

2008-05-11  Martin Nordholts  <martinn@svn.gnome.org>

	* app/tools/gimpcroptool.[ch]: No need to expose definitions of
	GimpCropTool or GimpCropToolClass.

svn path=/trunk/; revision=25640
This commit is contained in:
Martin Nordholts 2008-05-11 13:23:35 +00:00 committed by Martin Nordholts
parent de8909ddee
commit f5c4c35ff8
3 changed files with 18 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2008-05-11 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimpcroptool.[ch]: No need to expose definitions of
GimpCropTool or GimpCropToolClass.
2008-05-11 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimprectangletool.c: Fix emission of

View File

@ -43,6 +43,19 @@
#include "gimp-intl.h"
struct _GimpCropTool
{
GimpDrawTool parent_instance;
GimpImage *current_image;
};
struct _GimpCropToolClass
{
GimpDrawToolClass parent_class;
};
static void gimp_crop_tool_rectangle_tool_iface_init (GimpRectangleToolInterface *iface);
static GObject * gimp_crop_tool_constructor (GType type,

View File

@ -36,18 +36,6 @@
typedef struct _GimpCropTool GimpCropTool;
typedef struct _GimpCropToolClass GimpCropToolClass;
struct _GimpCropTool
{
GimpDrawTool parent_instance;
GimpImage *current_image;
};
struct _GimpCropToolClass
{
GimpDrawToolClass parent_class;
};
void gimp_crop_tool_register (GimpToolRegisterCallback callback,
gpointer data);