diff options
author | Tim Janik <timj@src.gnome.org> | 2008-06-20 11:07:40 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2008-06-20 11:07:40 +0000 |
commit | ad8fcdd70a3a38f9fd098435d81c68eac3bce2db (patch) | |
tree | d7c878a991168a5b78c25a6a8943a36d859580e9 /gtk/gtktextbuffer.h | |
parent | e368c4972d1f2b36d44f24aba38d520265460879 (diff) | |
download | gtk+-ad8fcdd70a3a38f9fd098435d81c68eac3bce2db.tar.gz |
Seal GtkTextBuffer.
svn path=/trunk/; revision=20598
Diffstat (limited to 'gtk/gtktextbuffer.h')
-rw-r--r-- | gtk/gtktextbuffer.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtktextbuffer.h b/gtk/gtktextbuffer.h index 2fb294e05d..c84c3b6c77 100644 --- a/gtk/gtktextbuffer.h +++ b/gtk/gtktextbuffer.h @@ -75,20 +75,20 @@ struct _GtkTextBuffer { GObject parent_instance; - GtkTextTagTable *tag_table; - GtkTextBTree *btree; + GtkTextTagTable *GSEAL (tag_table); + GtkTextBTree *GSEAL (btree); - GSList *clipboard_contents_buffers; - GSList *selection_clipboards; + GSList *GSEAL (clipboard_contents_buffers); + GSList *GSEAL (selection_clipboards); - GtkTextLogAttrCache *log_attr_cache; + GtkTextLogAttrCache *GSEAL (log_attr_cache); - guint user_action_count; + guint GSEAL (user_action_count); /* Whether the buffer has been modified since last save */ - guint modified : 1; + guint GSEAL (modified : 1); - guint has_selection : 1; + guint GSEAL (has_selection : 1); }; struct _GtkTextBufferClass |