Don't leak the resolution. Pass NULL to gtk_label_new to do less work. Bug
2006-12-08 Kjartan Maraas <kmaraas@gnome.org> * main.c: (wrap_in_label), (create_dialog): Don't leak the resolution. Pass NULL to gtk_label_new to do less work. Bug #376949.
This commit is contained in:
parent
af4e0b168a
commit
2252b81ff4
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-12-08 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
|
* main.c: (wrap_in_label), (create_dialog):
|
||||||
|
Don't leak the resolution. Pass NULL to gtk_label_new
|
||||||
|
to do less work. Bug #376949.
|
||||||
|
|
||||||
2006-09-15 Brian Cameron <brian.cameron@sun.com>
|
2006-09-15 Brian Cameron <brian.cameron@sun.com>
|
||||||
|
|
||||||
Fixes #356075
|
Fixes #356075
|
||||||
|
|
|
@ -314,7 +314,7 @@ wrap_in_label (GtkWidget *child, char *text)
|
||||||
vbox = gtk_vbox_new (FALSE, 6);
|
vbox = gtk_vbox_new (FALSE, 6);
|
||||||
label = NULL;
|
label = NULL;
|
||||||
|
|
||||||
label = gtk_label_new ("");
|
label = gtk_label_new (NULL);
|
||||||
|
|
||||||
str = g_strdup_printf ("<b>%s</b>", text);
|
str = g_strdup_printf ("<b>%s</b>", text);
|
||||||
gtk_label_set_markup (GTK_LABEL (label), str);
|
gtk_label_set_markup (GTK_LABEL (label), str);
|
||||||
|
@ -670,6 +670,7 @@ create_dialog (struct DisplayInfo *info)
|
||||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (per_computer_check),
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (per_computer_check),
|
||||||
resolution != NULL);
|
resolution != NULL);
|
||||||
info->was_per_computer = resolution != NULL;
|
info->was_per_computer = resolution != NULL;
|
||||||
|
g_free (resolution);
|
||||||
|
|
||||||
gtk_widget_show (per_computer_check);
|
gtk_widget_show (per_computer_check);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue