*** empty log message ***

This commit is contained in:
Matthias Clasen 2004-07-30 22:55:28 +00:00
parent 1f93c4359c
commit f56daaf167
5 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-07-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c: Don't forget to destroy the row separator
function user data when the combo box is destroyed.
2004-07-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.h:

View File

@ -1,3 +1,8 @@
2004-07-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c: Don't forget to destroy the row separator
function user data when the combo box is destroyed.
2004-07-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.h:

View File

@ -1,3 +1,8 @@
2004-07-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c: Don't forget to destroy the row separator
function user data when the combo box is destroyed.
2004-07-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.h:

View File

@ -1,3 +1,8 @@
2004-07-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c: Don't forget to destroy the row separator
function user data when the combo box is destroyed.
2004-07-30 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.h:

View File

@ -4120,6 +4120,13 @@ gtk_combo_box_destroy (GtkObject *object)
gtk_combo_box_popdown (combo_box);
if (combo_box->priv->row_separator_destroy)
(* combo_box->priv->row_separator_destroy) (combo_box->priv->row_separator_data);
combo_box->priv->row_separator_func = NULL;
combo_box->priv->row_separator_data = NULL;
combo_box->priv->row_separator_destroy = NULL;
combo_box->priv->destroying = 1;
GTK_OBJECT_CLASS (parent_class)->destroy (object);