forked from AuroraMiddleware/gtk
*** empty log message ***
This commit is contained in:
parent
1f93c4359c
commit
f56daaf167
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user