summaryrefslogtreecommitdiff
path: root/gtk/gtktreeselection.h
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>2008-06-20 11:01:24 +0000
committerTim Janik <timj@src.gnome.org>2008-06-20 11:01:24 +0000
commit4e1a46ebc3d2f5da32ca3ab64c18d09850163aed (patch)
treecb238ed456853aa5174251ac1735e5e0709a1b03 /gtk/gtktreeselection.h
parent1ba7f437bce8a21580a01e884894aa1eb6f71836 (diff)
downloadgtk+-4e1a46ebc3d2f5da32ca3ab64c18d09850163aed.tar.gz
Seal GtkTreeSelection.
* gtk/gtktreeselection.h: Seal all member fields. svn path=/trunk/; revision=20528
Diffstat (limited to 'gtk/gtktreeselection.h')
-rw-r--r--gtk/gtktreeselection.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtktreeselection.h b/gtk/gtktreeselection.h
index b8c864d51f..04320e4b3c 100644
--- a/gtk/gtktreeselection.h
+++ b/gtk/gtktreeselection.h
@@ -54,11 +54,11 @@ struct _GtkTreeSelection
/*< private >*/
- GtkTreeView *tree_view;
- GtkSelectionMode type;
- GtkTreeSelectionFunc user_func;
- gpointer user_data;
- GDestroyNotify destroy;
+ GtkTreeView *GSEAL (tree_view);
+ GtkSelectionMode GSEAL (type);
+ GtkTreeSelectionFunc GSEAL (user_func);
+ gpointer GSEAL (user_data);
+ GtkDestroyNotify GSEAL (destroy);
};
struct _GtkTreeSelectionClass