diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-02-09 03:22:41 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-02-09 03:22:41 +0800 |
commit | 88b0c8138afa59939e01615b66bda1a98d6b6ff3 (patch) | |
tree | cc1072566c11e48a5eec781691aabb642fd5bf1d /widgets/table/e-tree.c | |
parent | 499c0929cc588b4e5cdc3b16008622c9acd6c745 (diff) | |
download | gsoc2013-evolution-88b0c8138afa59939e01615b66bda1a98d6b6ff3.tar.gz gsoc2013-evolution-88b0c8138afa59939e01615b66bda1a98d6b6ff3.tar.zst gsoc2013-evolution-88b0c8138afa59939e01615b66bda1a98d6b6ff3.zip |
Call scroll_off and in e-tree.c hover_off.
2002-02-08 Christopher James Lahey <clahey@ximian.com>
* e-table.c (et_unrealize), e-tree.c (et_unrealize): Call
scroll_off and in e-tree.c hover_off.
svn path=/trunk/; revision=15618
Diffstat (limited to 'widgets/table/e-tree.c')
-rw-r--r-- | widgets/table/e-tree.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/widgets/table/e-tree.c b/widgets/table/e-tree.c index 5e301aabf0..d007be9c19 100644 --- a/widgets/table/e-tree.c +++ b/widgets/table/e-tree.c @@ -375,6 +375,16 @@ et_destroy (GtkObject *object) } static void +et_unrealize (GtkWidget *widget) +{ + scroll_off (E_TREE (widget)); + hover_off (E_TREE (widget)); + + if (GTK_WIDGET_CLASS (parent_class)->unrealize) + GTK_WIDGET_CLASS (parent_class)->unrealize (widget); +} + +static void e_tree_init (GtkObject *object) { ETree *e_tree = E_TREE (object); @@ -2774,6 +2784,7 @@ e_tree_class_init (ETreeClass *class) object_class->get_arg = et_get_arg; widget_class->grab_focus = et_grab_focus; + widget_class->unrealize = et_unrealize; container_class->focus = et_focus; |