summaryrefslogtreecommitdiff
path: root/tests/testfilechooser.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-07-16 21:07:38 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-07-16 21:07:38 +0000
commit7e54248bc3c4890aabdde5da3a929bca425a6649 (patch)
tree4bb378fd3d278cb15241f19c94a85fdad7a953ec /tests/testfilechooser.c
parentbc8567d488c8222f655f2ed746ecfa8041c81137 (diff)
downloadgtk+-7e54248bc3c4890aabdde5da3a929bca425a6649.tar.gz
auto-ize.
Wed Jul 16 16:50:31 2003 Owen Taylor <otaylor@redhat.com> * configure.ac Makefile.am: auto-ize. * xdgmime/: Add freedesktop.org MIME spec implementatin by Jonathan Blandford. * gtkfilesystem.[ch]: Add gtk_file_info_render_icon() gtk_file_info_set/get_icon_type to do icon handling based on MIME type. Add a simple icon caching system. * gtkfilesystemgnomevfs.c: Implement ensure_types() so that extending the set of types for a loaded directory works. Set the MIME type to get the default icon handling. * gtkfilesystemunix.c: Look up the MIME type using xdgmime. * gtkfilechooserimpldefault.c: Display icons in the list.
Diffstat (limited to 'tests/testfilechooser.c')
-rw-r--r--tests/testfilechooser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testfilechooser.c b/tests/testfilechooser.c
index cec922e5e2..95696dbb8e 100644
--- a/tests/testfilechooser.c
+++ b/tests/testfilechooser.c
@@ -56,9 +56,9 @@ main (int argc, char **argv)
gtk_init (&argc, &argv);
#ifdef USE_GNOME_VFS
- file_system = _gtk_file_system_gnome_vfs_new ();
+ file_system = gtk_file_system_gnome_vfs_new ();
#else
- file_system = _gtk_file_system_unix_new ();
+ file_system = gtk_file_system_unix_new ();
#endif
dialog = g_object_new (GTK_TYPE_FILE_CHOOSER_DIALOG,