Seal GtkTreeSelection.

* gtk/gtktreeselection.h: Seal all member fields.

svn path=/trunk/; revision=20528
This commit is contained in:
Tim Janik 2008-06-20 11:01:24 +00:00
parent 1ba7f437bc
commit 4e1a46ebc3

View File

@ -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