gtk+ r20525 - trunk/gtk



Author: timj
Date: Fri Jun 20 11:01:07 2008
New Revision: 20525
URL: http://svn.gnome.org/viewvc/gtk+?rev=20525&view=rev

Log:
Seal GtkCellRenderer.

* gtk/gtkcellrenderer.h: seal all member fields.  All member fields are
already accessible via GObject properties.


Modified:
   trunk/gtk/gtkcellrenderer.h

Modified: trunk/gtk/gtkcellrenderer.h
==============================================================================
--- trunk/gtk/gtkcellrenderer.h	(original)
+++ trunk/gtk/gtkcellrenderer.h	Fri Jun 20 11:01:07 2008
@@ -61,22 +61,22 @@
 {
   GtkObject parent;
 
-  gfloat xalign;
-  gfloat yalign;
+  gfloat GSEAL (xalign);
+  gfloat GSEAL (yalign);
 
-  gint width;
-  gint height;
+  gint GSEAL (width);
+  gint GSEAL (height);
 
-  guint16 xpad;
-  guint16 ypad;
+  guint16 GSEAL (xpad);
+  guint16 GSEAL (ypad);
 
-  guint mode : 2;
-  guint visible : 1;
-  guint is_expander : 1;
-  guint is_expanded : 1;
-  guint cell_background_set : 1;
-  guint sensitive : 1;
-  guint editing : 1;
+  guint GSEAL (mode : 2);
+  guint GSEAL (visible : 1);
+  guint GSEAL (is_expander : 1);
+  guint GSEAL (is_expanded : 1);
+  guint GSEAL (cell_background_set : 1);
+  guint GSEAL (sensitive : 1);
+  guint GSEAL (editing : 1);
 };
 
 struct _GtkCellRendererClass



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]