summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-45
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--gtk/gtkentry.c6
6 files changed, 29 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ce273f046e..67208be49a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Oct 11 19:09:05 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentry.c (gtk_entry_set_text): Check if completion is
+ non-NULL before accessing it. Oops.
+
Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index ce273f046e..67208be49a 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,8 @@
+Sat Oct 11 19:09:05 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentry.c (gtk_entry_set_text): Check if completion is
+ non-NULL before accessing it. Oops.
+
Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index ce273f046e..67208be49a 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,8 @@
+Sat Oct 11 19:09:05 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentry.c (gtk_entry_set_text): Check if completion is
+ non-NULL before accessing it. Oops.
+
Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index ce273f046e..67208be49a 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,8 @@
+Sat Oct 11 19:09:05 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentry.c (gtk_entry_set_text): Check if completion is
+ non-NULL before accessing it. Oops.
+
Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index ce273f046e..67208be49a 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,8 @@
+Sat Oct 11 19:09:05 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentry.c (gtk_entry_set_text): Check if completion is
+ non-NULL before accessing it. Oops.
+
Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 268d35dc33..215748e000 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -3453,7 +3453,8 @@ gtk_entry_set_text (GtkEntry *entry,
g_return_if_fail (text != NULL);
completion = gtk_entry_get_completion (entry);
- g_signal_handler_block (entry, completion->priv->changed_id);
+ if (completion)
+ g_signal_handler_block (entry, completion->priv->changed_id);
/* Actually setting the text will affect the cursor and selection;
* if the contents don't actually change, this will look odd to the user.
@@ -3466,7 +3467,8 @@ gtk_entry_set_text (GtkEntry *entry,
tmp_pos = 0;
gtk_editable_insert_text (GTK_EDITABLE (entry), text, strlen (text), &tmp_pos);
- g_signal_handler_unblock (entry, completion->priv->changed_id);
+ if (completion)
+ g_signal_handler_unblock (entry, completion->priv->changed_id);
}
void