Remove pointless sealing from GtkTextMark

This commit is contained in:
Matthias Clasen 2010-12-26 23:17:10 -05:00
parent 0c4a0dae6d
commit 51f7e42650

View File

@ -56,8 +56,6 @@
G_BEGIN_DECLS G_BEGIN_DECLS
/* The GtkTextMark data type */
typedef struct _GtkTextMark GtkTextMark; typedef struct _GtkTextMark GtkTextMark;
typedef struct _GtkTextMarkClass GtkTextMarkClass; typedef struct _GtkTextMarkClass GtkTextMarkClass;
@ -72,7 +70,8 @@ struct _GtkTextMark
{ {
GObject parent_instance; GObject parent_instance;
gpointer GSEAL (segment); /*< private >*/
gpointer segment;
}; };
struct _GtkTextMarkClass struct _GtkTextMarkClass
@ -88,12 +87,12 @@ struct _GtkTextMarkClass
GType gtk_text_mark_get_type (void) G_GNUC_CONST; GType gtk_text_mark_get_type (void) G_GNUC_CONST;
GtkTextMark *gtk_text_mark_new (const gchar *name,
gboolean left_gravity);
void gtk_text_mark_set_visible (GtkTextMark *mark, void gtk_text_mark_set_visible (GtkTextMark *mark,
gboolean setting); gboolean setting);
gboolean gtk_text_mark_get_visible (GtkTextMark *mark); gboolean gtk_text_mark_get_visible (GtkTextMark *mark);
GtkTextMark *gtk_text_mark_new (const gchar *name,
gboolean left_gravity);
G_CONST_RETURN gchar* gtk_text_mark_get_name (GtkTextMark *mark); G_CONST_RETURN gchar* gtk_text_mark_get_name (GtkTextMark *mark);
gboolean gtk_text_mark_get_deleted (GtkTextMark *mark); gboolean gtk_text_mark_get_deleted (GtkTextMark *mark);
GtkTextBuffer* gtk_text_mark_get_buffer (GtkTextMark *mark); GtkTextBuffer* gtk_text_mark_get_buffer (GtkTextMark *mark);
@ -101,6 +100,4 @@ gboolean gtk_text_mark_get_left_gravity (GtkTextMark *mark);
G_END_DECLS G_END_DECLS
#endif #endif /* __GTK_TEXT_MARK_H__ */