Bug 560602 – Wrong GtkMenuItem default value (test fails)

2008-11-13  Christian Dywan  <christian@imendio.com>

	Bug 560602 – Wrong GtkMenuItem default value (test fails)

	* gtk/gtkmenuitem.c (gtk_menu_item_class_init):
	Correct default "label" value to ""

svn path=/trunk/; revision=21788
This commit is contained in:
Christian Dywan 2008-11-13 08:48:38 +00:00 committed by Christian Dywan
parent 207f3f8685
commit 9f6daa9fb2
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-11-13 Christian Dywan <christian@imendio.com>
Bug 560602 Wrong GtkMenuItem default value (test fails)
* gtk/gtkmenuitem.c (gtk_menu_item_class_init):
Correct default "label" value to ""
2008-11-12 Christian Dywan <christian@imendio.com>
Bug 560139 GtkEntry doesn't paint with the right state

View File

@ -268,7 +268,7 @@ gtk_menu_item_class_init (GtkMenuItemClass *klass)
g_param_spec_string ("label",
P_("Label"),
P_("The text for the child label"),
NULL,
"",
GTK_PARAM_READWRITE));
/**