mirror of https://github.com/GNOME/gimp.git
parent
c267c55bbe
commit
6697f79b7f
|
@ -1,3 +1,7 @@
|
|||
Wed Jan 21 23:59:02 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Fixed up the change below to use the SetArg/GetArg stuff
|
||||
|
||||
Thu Jan 22 01:54:17 1998 Scott Goehring <scott@poverty.bloomington.in.us>
|
||||
|
||||
* Rework of drawables, images, and layers to use GtkObjects. Lots
|
||||
|
|
|
@ -60,7 +60,8 @@ gimp_channel_get_type ()
|
|||
sizeof (GimpChannelClass),
|
||||
(GtkClassInitFunc) gimp_channel_class_init,
|
||||
(GtkObjectInitFunc) gimp_channel_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
channel_type = gtk_type_unique (gimp_drawable_get_type (), &channel_info);
|
||||
|
|
|
@ -60,7 +60,8 @@ gimp_channel_get_type ()
|
|||
sizeof (GimpChannelClass),
|
||||
(GtkClassInitFunc) gimp_channel_class_init,
|
||||
(GtkObjectInitFunc) gimp_channel_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
channel_type = gtk_type_unique (gimp_drawable_get_type (), &channel_info);
|
||||
|
|
|
@ -60,7 +60,8 @@ gimp_channel_get_type ()
|
|||
sizeof (GimpChannelClass),
|
||||
(GtkClassInitFunc) gimp_channel_class_init,
|
||||
(GtkObjectInitFunc) gimp_channel_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
channel_type = gtk_type_unique (gimp_drawable_get_type (), &channel_info);
|
||||
|
|
|
@ -73,7 +73,8 @@ gimp_layer_get_type ()
|
|||
sizeof (GimpLayerClass),
|
||||
(GtkClassInitFunc) gimp_layer_class_init,
|
||||
(GtkObjectInitFunc) gimp_layer_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
layer_type = gtk_type_unique (gimp_drawable_get_type (), &layer_info);
|
||||
|
@ -118,7 +119,8 @@ gimp_layer_mask_get_type ()
|
|||
sizeof (GimpLayerMaskClass),
|
||||
(GtkClassInitFunc) gimp_layer_mask_class_init,
|
||||
(GtkObjectInitFunc) gimp_layer_mask_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
layer_mask_type = gtk_type_unique (gimp_channel_get_type (), &layer_mask_info);
|
||||
|
|
|
@ -62,7 +62,8 @@ gimp_drawable_get_type ()
|
|||
sizeof (GimpDrawableClass),
|
||||
(GtkClassInitFunc) gimp_drawable_class_init,
|
||||
(GtkObjectInitFunc) gimp_drawable_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
drawable_type = gtk_type_unique (gtk_data_get_type (), &drawable_info);
|
||||
|
|
|
@ -60,7 +60,8 @@ gimp_channel_get_type ()
|
|||
sizeof (GimpChannelClass),
|
||||
(GtkClassInitFunc) gimp_channel_class_init,
|
||||
(GtkObjectInitFunc) gimp_channel_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
channel_type = gtk_type_unique (gimp_drawable_get_type (), &channel_info);
|
||||
|
|
|
@ -73,7 +73,8 @@ gimp_layer_get_type ()
|
|||
sizeof (GimpLayerClass),
|
||||
(GtkClassInitFunc) gimp_layer_class_init,
|
||||
(GtkObjectInitFunc) gimp_layer_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
layer_type = gtk_type_unique (gimp_drawable_get_type (), &layer_info);
|
||||
|
@ -118,7 +119,8 @@ gimp_layer_mask_get_type ()
|
|||
sizeof (GimpLayerMaskClass),
|
||||
(GtkClassInitFunc) gimp_layer_mask_class_init,
|
||||
(GtkObjectInitFunc) gimp_layer_mask_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
layer_mask_type = gtk_type_unique (gimp_channel_get_type (), &layer_mask_info);
|
||||
|
|
|
@ -73,7 +73,8 @@ gimp_layer_get_type ()
|
|||
sizeof (GimpLayerClass),
|
||||
(GtkClassInitFunc) gimp_layer_class_init,
|
||||
(GtkObjectInitFunc) gimp_layer_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
layer_type = gtk_type_unique (gimp_drawable_get_type (), &layer_info);
|
||||
|
@ -118,7 +119,8 @@ gimp_layer_mask_get_type ()
|
|||
sizeof (GimpLayerMaskClass),
|
||||
(GtkClassInitFunc) gimp_layer_mask_class_init,
|
||||
(GtkObjectInitFunc) gimp_layer_mask_init,
|
||||
(GtkArgFunc) NULL,
|
||||
(GtkArgSetFunc) NULL,
|
||||
(GtkArgGetFunc) NULL,
|
||||
};
|
||||
|
||||
layer_mask_type = gtk_type_unique (gimp_channel_get_type (), &layer_mask_info);
|
||||
|
|
Loading…
Reference in New Issue