libgimp: add instance-private struct to all new objects

Just in case we need it later.
This commit is contained in:
Michael Natterer
2019-08-27 16:47:17 +02:00
parent 96c1f754ba
commit f57725a96a
18 changed files with 120 additions and 54 deletions

View File

@ -43,14 +43,14 @@ struct _GimpImagePrivate
};
static void gimp_image_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec);
static void gimp_image_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec);
static void gimp_image_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec);
static void gimp_image_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec);
G_DEFINE_TYPE_WITH_PRIVATE (GimpImage, gimp_image, G_TYPE_OBJECT)