Merged from trunk:

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

	Merged from trunk:

	* 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=/branches/gtk-2-12/; revision=19537
This commit is contained in:
Emmanuele Bassi
2008-02-12 16:42:53 +00:00
committed by Emmanuele Bassi
parent a21cbfc272
commit 2f3adcac97
3 changed files with 15 additions and 2 deletions

View File

@@ -1,3 +1,16 @@
2008-02-12 Emmanuele Bassi <ebassi@gnome.org>
Merged from trunk:
* 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>
Merged from trunk:

View File

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

View File

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