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:

committed by
Emmanuele Bassi

parent
0eb4770cfa
commit
ede4f39e38
11
ChangeLog
11
ChangeLog
@ -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:
|
||||||
|
@ -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:
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user