Don't free the value.

2006-06-21  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkprinteroptionwidget.c (radio_changed_cb): Don't free
	the value.
This commit is contained in:
Matthias Clasen 2006-06-21 19:05:22 +00:00 committed by Matthias Clasen
parent be8f3c72ea
commit f3843afead
3 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -1,3 +1,8 @@
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

View File

@ -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);
}