Author: ebassi
Date: Tue Feb 12 16:42:53 2008
New Revision: 19537
URL: http://svn.gnome.org/viewvc/gtk+?rev=19537&view=rev
Log:
2008-02-12 Emmanuele Bassi <[EMAIL PROTECTED]>
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.
Modified:
branches/gtk-2-12/ChangeLog
branches/gtk-2-12/gtk/gtkrecentchooser.c
branches/gtk-2-12/gtk/gtkrecentchooserdefault.c
Modified: branches/gtk-2-12/gtk/gtkrecentchooser.c
==============================================================================
--- branches/gtk-2-12/gtk/gtkrecentchooser.c (original)
+++ branches/gtk-2-12/gtk/gtkrecentchooser.c Tue Feb 12 16:42:53 2008
@@ -177,7 +177,7 @@
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:
Modified: branches/gtk-2-12/gtk/gtkrecentchooserdefault.c
==============================================================================
--- branches/gtk-2-12/gtk/gtkrecentchooserdefault.c (original)
+++ branches/gtk-2-12/gtk/gtkrecentchooserdefault.c Tue Feb 12 16:42:53 2008
@@ -345,7 +345,7 @@
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;
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.