From ede4f39e38b876e26acdcfd53298d7af0218d2db Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 12 Feb 2008 16:38:00 +0000 Subject: [PATCH] Set the default value of the :show-not-found property to TRUE, as every 2008-02-12 Emmanuele Bassi * 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 --- ChangeLog | 11 +++++++++++ gtk/gtkrecentchooser.c | 2 +- gtk/gtkrecentchooserdefault.c | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2880c7ac55..26289e1ee2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2008-02-12 Emmanuele Bassi + + * 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 * gtk/gtkclipboard-quartz.c: 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;