Set the default value of the :show-not-found property to TRUE, as every

2008-02-12  Emmanuele Bassi  <ebassi@gnome.org>

	* gtk/gtkrecentchooser.c:
	(gtk_recent_chooser_class_init): Set the default value of the
	:show-not-found property to TRUE, as every implementation sets
	it to TRUE already.

	* gtk/gtkrecentchooserdefault.c:
	(_gtk_recent_chooser_default_init): Sync show_tips to the
	default value of the :show-tips property.

svn path=/trunk/; revision=19535
This commit is contained in:
Emmanuele Bassi
2008-02-12 16:38:00 +00:00
committed by Emmanuele Bassi
parent 0eb4770cfa
commit ede4f39e38
3 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,14 @@
2008-02-12 Emmanuele Bassi <ebassi@gnome.org>
* gtk/gtkrecentchooser.c:
(gtk_recent_chooser_class_init): Set the default value of the
:show-not-found property to TRUE, as every implementation sets
it to TRUE already.
* gtk/gtkrecentchooserdefault.c:
(_gtk_recent_chooser_default_init): Sync show_tips to the
default value of the :show-tips property.
2008-02-12 Matthias Clasen <mclasen@redhat.com> 2008-02-12 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkclipboard-quartz.c: * gtk/gtkclipboard-quartz.c:

View File

@ -177,7 +177,7 @@ gtk_recent_chooser_class_init (gpointer g_iface)
g_param_spec_boolean ("show-not-found", g_param_spec_boolean ("show-not-found",
P_("Show Not Found"), P_("Show Not Found"),
P_("Whether the items pointing to unavailable resources should be displayed"), P_("Whether the items pointing to unavailable resources should be displayed"),
FALSE, TRUE,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
/** /**
* GtkRecentChooser:select-multiple: * GtkRecentChooser:select-multiple:

View File

@ -345,7 +345,7 @@ _gtk_recent_chooser_default_init (GtkRecentChooserDefault *impl)
impl->show_icons = TRUE; impl->show_icons = TRUE;
impl->show_private = FALSE; impl->show_private = FALSE;
impl->show_not_found = TRUE; impl->show_not_found = TRUE;
impl->show_tips = TRUE; impl->show_tips = FALSE;
impl->select_multiple = FALSE; impl->select_multiple = FALSE;
impl->local_only = TRUE; impl->local_only = TRUE;