Destroy, do not unref, the popup_window.

2001-08-14  Federico Mena Quintero  <federico@ximian.com>

	* e-cell-combo.c (e_cell_combo_destroy): Destroy, do not unref,
	the popup_window.

svn path=/trunk/; revision=12021
This commit is contained in:
Federico Mena Quintero
2001-08-14 18:30:10 +00:00
committed by Federico Mena Quintero
parent e881e3acc1
commit 0f680dfd18

View File

@ -190,7 +190,8 @@ e_cell_combo_destroy (GtkObject *object)
{
ECellCombo *ecc = E_CELL_COMBO (object);
gtk_widget_unref (ecc->popup_window);
gtk_widget_destroy (ecc->popup_window);
ecc->popup_window = NULL;
GTK_OBJECT_CLASS (parent_class)->destroy (object);
}