Gimp/app/gimpobject.c
Lauri Alanko 5c5c73f3f5 Misc cleaning up here and there. Note that since the ids were used
to detect if an image still exists, some things may, for now,
access freed images and break. This will be fixed once proper
destroy handlers are added.
1998-06-30 01:14:36 +00:00

28 lines
408 B
C

#include "gimpobjectP.h"
static void
gimp_object_init (GimpObject *gobject)
{
}
static void
gimp_object_class_init (GimpObjectClass *gobjectclass)
{
}
GtkType gimp_object_get_type (void)
{
static GtkType type;
GIMP_TYPE_INIT(type,
GimpObject,
GimpObjectClass,
gimp_object_init,
gimp_object_class_init,
GTK_TYPE_OBJECT);
return type;
}