diff --git a/ChangeLog b/ChangeLog index a2a57ce1a..7379764ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-01-05 Murray Cumming + + * gdk/gdkimage.h: Added documentation to the struct, as + suggested by Owen Taylor. + Sun Jan 4 15:29:04 2004 Soeren Sandmann * gtk/gtkradiotoolbutton.[ch] diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a2a57ce1a..7379764ee 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2004-01-05 Murray Cumming + + * gdk/gdkimage.h: Added documentation to the struct, as + suggested by Owen Taylor. + Sun Jan 4 15:29:04 2004 Soeren Sandmann * gtk/gtkradiotoolbutton.[ch] diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a2a57ce1a..7379764ee 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2004-01-05 Murray Cumming + + * gdk/gdkimage.h: Added documentation to the struct, as + suggested by Owen Taylor. + Sun Jan 4 15:29:04 2004 Soeren Sandmann * gtk/gtkradiotoolbutton.[ch] diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a2a57ce1a..7379764ee 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2004-01-05 Murray Cumming + + * gdk/gdkimage.h: Added documentation to the struct, as + suggested by Owen Taylor. + Sun Jan 4 15:29:04 2004 Soeren Sandmann * gtk/gtkradiotoolbutton.[ch] diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a2a57ce1a..7379764ee 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2004-01-05 Murray Cumming + + * gdk/gdkimage.h: Added documentation to the struct, as + suggested by Owen Taylor. + Sun Jan 4 15:29:04 2004 Soeren Sandmann * gtk/gtkradiotoolbutton.[ch] diff --git a/gdk/gdkimage.h b/gdk/gdkimage.h index 3bb79b26f..34ac913c7 100644 --- a/gdk/gdkimage.h +++ b/gdk/gdkimage.h @@ -37,16 +37,18 @@ typedef struct _GdkImageClass GdkImageClass; struct _GdkImage { GObject parent_instance; + + /*< public >*/ - GdkImageType type; - GdkVisual *visual; /* visual used to create the image */ - GdkByteOrder byte_order; - gint width; - gint height; - guint16 depth; - guint16 bpp; /* bytes per pixel */ - guint16 bpl; /* bytes per line */ - guint16 bits_per_pixel; /* bits per pixel */ + GdkImageType type; /* read only. */ + GdkVisual *visual; /* read only. visual used to create the image */ + GdkByteOrder byte_order; /* read only. */ + gint width; /* read only. */ + gint height; /* read only. */ + guint16 depth; /* read only. */ + guint16 bpp; /* read only. bytes per pixel */ + guint16 bpl; /* read only. bytes per line */ + guint16 bits_per_pixel; /* read only. bits per pixel */ gpointer mem; GdkColormap *colormap;