new GTK_STOCK_NETWORK ... gtk/gtkstock.[hc] : ... define ...
2004-01-28 Hans Breuer <hans@breuer.org> * gtk/stock-icons/stock_network_(16|24).png : new GTK_STOCK_NETWORK ... gtk/gtkstock.[hc] : ... define ... gtk/gtkiconfactory.c : ... register ... gtk/stock-icons/Makefile.am gtk/stock-icons/makefile.msc : ... compile ... * gtk/gtkfilesystemwin32.c : ... and use. Also adapt to recent IFace changes. * gtk/gtk.def : added a bunch of new exported symbols * tests/testfilechooser.c (no_backup_files_filter) : don't crash on filter_info->display_name being NULL * tests/testgtk.c : make testgtk --bench=all work again
This commit is contained in:
		| @ -90,7 +90,7 @@ static gboolean | ||||
| no_backup_files_filter (const GtkFileFilterInfo *filter_info, | ||||
| 			gpointer                 data) | ||||
| { | ||||
|   gsize len = strlen (filter_info->display_name); | ||||
|   gsize len = filter_info->display_name ? strlen (filter_info->display_name) : 0; | ||||
|   if (len > 0 && filter_info->display_name[len - 1] == '~') | ||||
|     return 0; | ||||
|   else | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Hans Breuer
					Hans Breuer