destroy the search data iff the destroy func isn't NULL.

Mon Apr 28 18:03:29 2003  Jonathan Blandford  <jrb@redhat.com>

	* gtk/gtktreeview.c (gtk_tree_view_destroy): destroy the search
	data iff the destroy func isn't NULL.
 ----------------------------------------------------------------------
This commit is contained in:
Jonathan Blandford 2003-04-28 22:04:00 +00:00 committed by Jonathan Blandford
parent 72413c402c
commit e6b9af39bf
6 changed files with 26 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Apr 28 17:54:39 2003 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_destroy): destroy the search
data iff the destroy func isn't NULL.
Thu Apr 24 19:12:05 2003 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_libtool): Accept libtool-1.5. (#111480)

View File

@ -1,3 +1,8 @@
Mon Apr 28 17:54:39 2003 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_destroy): destroy the search
data iff the destroy func isn't NULL.
Thu Apr 24 19:12:05 2003 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_libtool): Accept libtool-1.5. (#111480)

View File

@ -1,3 +1,8 @@
Mon Apr 28 17:54:39 2003 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_destroy): destroy the search
data iff the destroy func isn't NULL.
Thu Apr 24 19:12:05 2003 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_libtool): Accept libtool-1.5. (#111480)

View File

@ -1,3 +1,8 @@
Mon Apr 28 17:54:39 2003 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_destroy): destroy the search
data iff the destroy func isn't NULL.
Thu Apr 24 19:12:05 2003 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_libtool): Accept libtool-1.5. (#111480)

View File

@ -1,3 +1,8 @@
Mon Apr 28 17:54:39 2003 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_destroy): destroy the search
data iff the destroy func isn't NULL.
Thu Apr 24 19:12:05 2003 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_libtool): Accept libtool-1.5. (#111480)

View File

@ -1180,7 +1180,7 @@ gtk_tree_view_destroy (GtkObject *object)
gtk_tree_view_search_dialog_destroy (search_dialog,
tree_view);
if (tree_view->priv->search_user_data)
if (tree_view->priv->search_destroy)
{
(* tree_view->priv->search_destroy) (tree_view->priv->search_user_data);
tree_view->priv->search_user_data = NULL;