]> Pileus Git - ~andy/gtk/commitdiff
Added <public> documentation to the struct, as suggested by Owen Taylor.
authorMurray Cumming <murrayc@usa.net>
Mon, 5 Jan 2004 18:24:08 +0000 (18:24 +0000)
committerMurray Cumming <murrayc@src.gnome.org>
Mon, 5 Jan 2004 18:24:08 +0000 (18:24 +0000)
2004-01-05  Murray Cumming  <murrayc@usa.net>

        * gdk/gdkimage.h: Added <public> documentation to the struct, as
        suggested by Owen Taylor.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdkimage.h

index a2a57ce1a9ea29e9fbc65448375423b173e8d94a..7379764ee71b2adf655eb765f29f7d75a0101982 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-05  Murray Cumming  <murrayc@usa.net>
+
+       * gdk/gdkimage.h: Added <public> documentation to the struct, as
+       suggested by Owen Taylor.
+
 Sun Jan  4 15:29:04 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtkradiotoolbutton.[ch]
index a2a57ce1a9ea29e9fbc65448375423b173e8d94a..7379764ee71b2adf655eb765f29f7d75a0101982 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-05  Murray Cumming  <murrayc@usa.net>
+
+       * gdk/gdkimage.h: Added <public> documentation to the struct, as
+       suggested by Owen Taylor.
+
 Sun Jan  4 15:29:04 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtkradiotoolbutton.[ch]
index a2a57ce1a9ea29e9fbc65448375423b173e8d94a..7379764ee71b2adf655eb765f29f7d75a0101982 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-05  Murray Cumming  <murrayc@usa.net>
+
+       * gdk/gdkimage.h: Added <public> documentation to the struct, as
+       suggested by Owen Taylor.
+
 Sun Jan  4 15:29:04 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtkradiotoolbutton.[ch]
index a2a57ce1a9ea29e9fbc65448375423b173e8d94a..7379764ee71b2adf655eb765f29f7d75a0101982 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-05  Murray Cumming  <murrayc@usa.net>
+
+       * gdk/gdkimage.h: Added <public> documentation to the struct, as
+       suggested by Owen Taylor.
+
 Sun Jan  4 15:29:04 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtkradiotoolbutton.[ch]
index a2a57ce1a9ea29e9fbc65448375423b173e8d94a..7379764ee71b2adf655eb765f29f7d75a0101982 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-05  Murray Cumming  <murrayc@usa.net>
+
+       * gdk/gdkimage.h: Added <public> documentation to the struct, as
+       suggested by Owen Taylor.
+
 Sun Jan  4 15:29:04 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtkradiotoolbutton.[ch]
index 3bb79b26f9296b60917f157e2e7fd9f7906fdf8b..34ac913c7f8b2fbe3d18cbc10e347f53b658e235 100644 (file)
@@ -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;