diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-12-26 22:39:18 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-12-26 22:58:57 -0500 |
commit | 0c4a0dae6d0223ed8ace8c353292ea0a5a1be864 (patch) | |
tree | c0b56b054749a45c80ea49a83b7b4c559a6dba26 /gtk/gtktextchild.h | |
parent | 9dee9a84d0e8a7a3199d55aa5d4ecc1d89b97c71 (diff) | |
download | gtk+-0c4a0dae6d0223ed8ace8c353292ea0a5a1be864.tar.gz |
Remove pointless sealing from GtkTextChild
Diffstat (limited to 'gtk/gtktextchild.h')
-rw-r--r-- | gtk/gtktextchild.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gtk/gtktextchild.h b/gtk/gtktextchild.h index afcbadf8c7..e20fb442c3 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 |