mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
More default property value corrections
svn path=/trunk/; revision=19276
This commit is contained in:
parent
98c4b12ea3
commit
81b82a676f
@ -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>
|
||||
|
||||
* 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",
|
||||
P_("Show file operations"),
|
||||
P_("Whether buttons for creating/manipulating files should be displayed"),
|
||||
FALSE,
|
||||
TRUE,
|
||||
GTK_PARAM_READWRITE));
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_SELECT_MULTIPLE,
|
||||
|
@ -296,7 +296,7 @@ gtk_label_class_init (GtkLabelClass *class)
|
||||
g_param_spec_string ("label",
|
||||
P_("Label"),
|
||||
P_("The text of the label"),
|
||||
NULL,
|
||||
"",
|
||||
GTK_PARAM_READWRITE));
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_ATTRIBUTES,
|
||||
|
@ -131,7 +131,7 @@ gtk_link_button_class_init (GtkLinkButtonClass *klass)
|
||||
/**
|
||||
* GtkLinkButton:uri
|
||||
*
|
||||
* The URI bound to this button.
|
||||
* The URI bound to this button.
|
||||
*
|
||||
* Since: 2.10
|
||||
*/
|
||||
@ -140,7 +140,7 @@ gtk_link_button_class_init (GtkLinkButtonClass *klass)
|
||||
g_param_spec_string ("uri",
|
||||
_("URI"),
|
||||
_("The URI bound to this button"),
|
||||
"http://www.gtk.org",
|
||||
NULL,
|
||||
G_PARAM_READWRITE));
|
||||
|
||||
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",
|
||||
P_("Tearoff Title"),
|
||||
P_("A title that may be displayed by the window manager when this menu is torn-off"),
|
||||
"",
|
||||
NULL,
|
||||
GTK_PARAM_READWRITE));
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user