summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--gtk/gtkcombobox.c3
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e57fa86fa..469c9dce0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2008-08-05 Michael Natterer <mitch@imendio.com>
+ * gtk/gtkcombobox.c (gtk_combo_box_update_sensitivity): bail out
+ early if priv->button is NULL to avoid zillions of warnings when
+ destroying combo boxes that were working fine before the
+ button sensitivity patch.
+
+2008-08-05 Michael Natterer <mitch@imendio.com>
+
Bug 544858 – Seal GtkAdjustment
* gtk/gtk.symbols
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c
index 0a081d11a..cc3b0a29d 100644
--- a/gtk/gtkcombobox.c
+++ b/gtk/gtkcombobox.c
@@ -3157,6 +3157,9 @@ gtk_combo_box_update_sensitivity (GtkComboBox *combo_box)
GtkTreeIter iter;
gboolean sensitive = TRUE; /* fool code checkers */
+ if (!combo_box->priv->button)
+ return;
+
switch (combo_box->priv->button_sensitivity)
{
case GTK_SENSITIVITY_ON: