Patch from Paul Bolle <pebolle@tiscali.nl>: Fix for bug #517082 (Fixed a small memory-leak)
svn path=/trunk/; revision=35064
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2007-02-20 Paul Bolle <pebolle@tiscali.nl>
|
||||
|
||||
** Fix for bug #517082
|
||||
|
||||
* icsimporter.c: (init_widgets): Fix small leak.
|
||||
|
||||
2008-02-06 Milan Crha <mcrha@redhat.com>
|
||||
|
||||
** Fix for bug #514622
|
||||
@ -13,7 +19,7 @@
|
||||
|
||||
2007-06-03 Srinivasa Ragavan <sragavan@novell.com>
|
||||
|
||||
** Fix for version removal from Installed files from Gilles Dartiguelongue
|
||||
** Fix for version removal from Installed files from Gilles Dartiguelongue
|
||||
|
||||
* Makefile.am:
|
||||
|
||||
|
||||
@ -235,6 +235,7 @@ init_widgets(char *path)
|
||||
|
||||
markup = g_markup_printf_escaped ("<b>%s</b>", label_str);
|
||||
gtk_label_set_markup (GTK_LABEL (label), markup);
|
||||
g_free (markup);
|
||||
hbox = gtk_hbox_new (FALSE, FALSE);
|
||||
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 6);
|
||||
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 6);
|
||||
|
||||
Reference in New Issue
Block a user