mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-11 13:10:07 +00:00
Fix #144405, patch by Padraig O'Briain <padraig.obriain@sun.com>:
2004-07-14 Federico Mena Quintero <federico@ximian.com> Fix #144405, patch by Padraig O'Briain <padraig.obriain@sun.com>: * gtk/gtkfilechooserdefault.c (shortcuts_list_create): Set the accessible object name for the tree view. (create_file_list): Likewise.
This commit is contained in:
parent
20e3b2db65
commit
d319b8f926
@ -1,3 +1,11 @@
|
||||
2004-07-14 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #144405, patch by Padraig O'Briain <padraig.obriain@sun.com>:
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_list_create): Set the
|
||||
accessible object name for the tree view.
|
||||
(create_file_list): Likewise.
|
||||
|
||||
Tue Jul 13 21:53:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkicontheme.c (free_unthemed_icon): Don't leak
|
||||
|
@ -1,3 +1,11 @@
|
||||
2004-07-14 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #144405, patch by Padraig O'Briain <padraig.obriain@sun.com>:
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_list_create): Set the
|
||||
accessible object name for the tree view.
|
||||
(create_file_list): Likewise.
|
||||
|
||||
Tue Jul 13 21:53:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkicontheme.c (free_unthemed_icon): Don't leak
|
||||
|
@ -1,3 +1,11 @@
|
||||
2004-07-14 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #144405, patch by Padraig O'Briain <padraig.obriain@sun.com>:
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_list_create): Set the
|
||||
accessible object name for the tree view.
|
||||
(create_file_list): Likewise.
|
||||
|
||||
Tue Jul 13 21:53:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkicontheme.c (free_unthemed_icon): Don't leak
|
||||
|
@ -1,3 +1,11 @@
|
||||
2004-07-14 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
Fix #144405, patch by Padraig O'Briain <padraig.obriain@sun.com>:
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_list_create): Set the
|
||||
accessible object name for the tree view.
|
||||
(create_file_list): Likewise.
|
||||
|
||||
Tue Jul 13 21:53:08 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkicontheme.c (free_unthemed_icon): Don't leak
|
||||
|
@ -2522,6 +2522,7 @@ shortcuts_list_create (GtkFileChooserDefault *impl)
|
||||
/* Tree */
|
||||
|
||||
impl->browse_shortcuts_tree_view = gtk_tree_view_new ();
|
||||
atk_object_set_name (gtk_widget_get_accessible (impl->browse_shortcuts_tree_view), _("Shortcuts"));
|
||||
gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), FALSE);
|
||||
|
||||
gtk_tree_view_set_model (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view), impl->shortcuts_filter_model);
|
||||
@ -2826,6 +2827,7 @@ create_file_list (GtkFileChooserDefault *impl)
|
||||
|
||||
impl->browse_files_tree_view = gtk_tree_view_new ();
|
||||
g_object_set_data (G_OBJECT (impl->browse_files_tree_view), "GtkFileChooserDefault", impl);
|
||||
atk_object_set_name (gtk_widget_get_accessible (impl->browse_files_tree_view), _("Files"));
|
||||
|
||||
gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (impl->browse_files_tree_view), TRUE);
|
||||
gtk_container_add (GTK_CONTAINER (swin), impl->browse_files_tree_view);
|
||||
|
Loading…
Reference in New Issue
Block a user