More default property value corrections
svn path=/trunk/; revision=19276
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2007-12-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkfilesel.c:
|
||||||
|
* gtk/gtklabel.c:
|
||||||
|
* gtk/gtklinkbutton.c:
|
||||||
|
* gtk/gtkmenu.c: More default property value corrections.
|
||||||
|
|
||||||
2007-12-28 Matthias Clasen <mclasen@redhat.com>
|
2007-12-28 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* gtk/gtkitemfactory.c (gtk_item_factory_finalize): Don't unref
|
* gtk/gtkitemfactory.c (gtk_item_factory_finalize): Don't unref
|
||||||
|
|||||||
@ -531,7 +531,7 @@ gtk_file_selection_class_init (GtkFileSelectionClass *class)
|
|||||||
g_param_spec_boolean ("show-fileops",
|
g_param_spec_boolean ("show-fileops",
|
||||||
P_("Show file operations"),
|
P_("Show file operations"),
|
||||||
P_("Whether buttons for creating/manipulating files should be displayed"),
|
P_("Whether buttons for creating/manipulating files should be displayed"),
|
||||||
FALSE,
|
TRUE,
|
||||||
GTK_PARAM_READWRITE));
|
GTK_PARAM_READWRITE));
|
||||||
g_object_class_install_property (gobject_class,
|
g_object_class_install_property (gobject_class,
|
||||||
PROP_SELECT_MULTIPLE,
|
PROP_SELECT_MULTIPLE,
|
||||||
|
|||||||
@ -296,7 +296,7 @@ gtk_label_class_init (GtkLabelClass *class)
|
|||||||
g_param_spec_string ("label",
|
g_param_spec_string ("label",
|
||||||
P_("Label"),
|
P_("Label"),
|
||||||
P_("The text of the label"),
|
P_("The text of the label"),
|
||||||
NULL,
|
"",
|
||||||
GTK_PARAM_READWRITE));
|
GTK_PARAM_READWRITE));
|
||||||
g_object_class_install_property (gobject_class,
|
g_object_class_install_property (gobject_class,
|
||||||
PROP_ATTRIBUTES,
|
PROP_ATTRIBUTES,
|
||||||
|
|||||||
@ -131,7 +131,7 @@ gtk_link_button_class_init (GtkLinkButtonClass *klass)
|
|||||||
/**
|
/**
|
||||||
* GtkLinkButton:uri
|
* GtkLinkButton:uri
|
||||||
*
|
*
|
||||||
* The URI bound to this button.
|
* The URI bound to this button.
|
||||||
*
|
*
|
||||||
* Since: 2.10
|
* Since: 2.10
|
||||||
*/
|
*/
|
||||||
@ -140,7 +140,7 @@ gtk_link_button_class_init (GtkLinkButtonClass *klass)
|
|||||||
g_param_spec_string ("uri",
|
g_param_spec_string ("uri",
|
||||||
_("URI"),
|
_("URI"),
|
||||||
_("The URI bound to this button"),
|
_("The URI bound to this button"),
|
||||||
"http://www.gtk.org",
|
NULL,
|
||||||
G_PARAM_READWRITE));
|
G_PARAM_READWRITE));
|
||||||
|
|
||||||
g_type_class_add_private (gobject_class, sizeof (GtkLinkButtonPrivate));
|
g_type_class_add_private (gobject_class, sizeof (GtkLinkButtonPrivate));
|
||||||
|
|||||||
@ -483,7 +483,7 @@ gtk_menu_class_init (GtkMenuClass *class)
|
|||||||
g_param_spec_string ("tearoff-title",
|
g_param_spec_string ("tearoff-title",
|
||||||
P_("Tearoff Title"),
|
P_("Tearoff Title"),
|
||||||
P_("A title that may be displayed by the window manager when this menu is torn-off"),
|
P_("A title that may be displayed by the window manager when this menu is torn-off"),
|
||||||
"",
|
NULL,
|
||||||
GTK_PARAM_READWRITE));
|
GTK_PARAM_READWRITE));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user