[gtk+] Remove pointless sealing from GtkTextChild



commit 0c4a0dae6d0223ed8ace8c353292ea0a5a1be864
Author: Matthias Clasen <mclasen redhat com>
Date:   Sun Dec 26 22:39:18 2010 -0500

    Remove pointless sealing from GtkTextChild

 gtk/gtktextchild.h |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/gtk/gtktextchild.h b/gtk/gtktextchild.h
index afcbadf..e20fb44 100644
--- a/gtk/gtktextchild.h
+++ b/gtk/gtktextchild.h
@@ -58,7 +58,8 @@ struct _GtkTextChildAnchor
 {
   GObject parent_instance;
 
-  gpointer GSEAL (segment);
+  /*< private >*/
+  gpointer segment;
 };
 
 struct _GtkTextChildAnchorClass
@@ -72,12 +73,12 @@ struct _GtkTextChildAnchorClass
   void (*_gtk_reserved4) (void);
 };
 
-GType gtk_text_child_anchor_get_type (void) G_GNUC_CONST;
+GType               gtk_text_child_anchor_get_type    (void) G_GNUC_CONST;
 
-GtkTextChildAnchor* gtk_text_child_anchor_new (void);
+GtkTextChildAnchor* gtk_text_child_anchor_new         (void);
 
-GList*   gtk_text_child_anchor_get_widgets (GtkTextChildAnchor *anchor);
-gboolean gtk_text_child_anchor_get_deleted (GtkTextChildAnchor *anchor);
+GList*              gtk_text_child_anchor_get_widgets (GtkTextChildAnchor *anchor);
+gboolean            gtk_text_child_anchor_get_deleted (GtkTextChildAnchor *anchor);
 
 G_END_DECLS
 



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