From 2f3adcac97d423acf68ac8018accdbb8bdc53933 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 12 Feb 2008 16:42:53 +0000 Subject: [PATCH] Merged from trunk: 2008-02-12 Emmanuele Bassi 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 --- ChangeLog | 13 +++++++++++++ gtk/gtkrecentchooser.c | 2 +- gtk/gtkrecentchooserdefault.c | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0af7382be8..03b5eb4df8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2008-02-12 Emmanuele Bassi + + 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 Merged from trunk: diff --git a/gtk/gtkrecentchooser.c b/gtk/gtkrecentchooser.c index a3a5e9acb4..31157b98d7 100644 --- a/gtk/gtkrecentchooser.c +++ b/gtk/gtkrecentchooser.c @@ -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: diff --git a/gtk/gtkrecentchooserdefault.c b/gtk/gtkrecentchooserdefault.c index 5629245597..2eafcde2ef 100644 --- a/gtk/gtkrecentchooserdefault.c +++ b/gtk/gtkrecentchooserdefault.c @@ -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;