summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-06-21 19:05:22 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-06-21 19:05:22 +0000
commitf3843afeadb30570932ece8a940f5120930db60a (patch)
tree38b85b197509082dbfb811bf8bc0a7c5ca8f2da8
parentbe8f3c72ea1ae469f7f1fa29be40f9e750f9f1ee (diff)
downloadgdk-pixbuf-f3843afeadb30570932ece8a940f5120930db60a.tar.gz
Don't free the value.
2006-06-21 Matthias Clasen <mclasen@redhat.com> * gtk/gtkprinteroptionwidget.c (radio_changed_cb): Don't free the value.
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--gtk/gtkprinteroptionwidget.c1
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c1076064..3b31b461f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-06-21 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkprinteroptionwidget.c (radio_changed_cb): Don't free
+ the value.
+
+2006-06-21 Matthias Clasen <mclasen@redhat.com>
+
Apply a patch by John Palmieri to use buffered io using
GIOChannels, clean up error handling and support Cups 1.2
api in the printing code.
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 1c1076064..3b31b461f 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,10 @@
2006-06-21 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkprinteroptionwidget.c (radio_changed_cb): Don't free
+ the value.
+
+2006-06-21 Matthias Clasen <mclasen@redhat.com>
+
Apply a patch by John Palmieri to use buffered io using
GIOChannels, clean up error handling and support Cups 1.2
api in the printing code.
diff --git a/gtk/gtkprinteroptionwidget.c b/gtk/gtkprinteroptionwidget.c
index 85b767baa..d5d625f23 100644
--- a/gtk/gtkprinteroptionwidget.c
+++ b/gtk/gtkprinteroptionwidget.c
@@ -494,7 +494,6 @@ radio_changed_cb (GtkWidget *button,
value = g_object_get_data (G_OBJECT (button), "value");
if (value)
gtk_printer_option_set (priv->source, value);
- g_free (value);
g_signal_handler_unblock (priv->source, priv->source_changed_handler);
emit_changed (widget);
}