diff options
author | Dan Winship <danw@src.gnome.org> | 2000-09-19 08:07:28 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-09-19 08:07:28 +0800 |
commit | 267e69cf010fa5ab7381a30740a264a66a9493a2 (patch) | |
tree | ea481e3b62506155278309ca3ac71acb64a93d54 | |
parent | db2e7437df13c4a60ec475d67f5e6d5aaacd3929 (diff) | |
download | gsoc2013-evolution-267e69cf010fa5ab7381a30740a264a66a9493a2.tar gsoc2013-evolution-267e69cf010fa5ab7381a30740a264a66a9493a2.tar.gz gsoc2013-evolution-267e69cf010fa5ab7381a30740a264a66a9493a2.tar.bz2 gsoc2013-evolution-267e69cf010fa5ab7381a30740a264a66a9493a2.tar.lz gsoc2013-evolution-267e69cf010fa5ab7381a30740a264a66a9493a2.tar.xz gsoc2013-evolution-267e69cf010fa5ab7381a30740a264a66a9493a2.tar.zst gsoc2013-evolution-267e69cf010fa5ab7381a30740a264a66a9493a2.zip |
Call gnome_vfs_init() since the composer now does file operations (to get
* main.c (main): Call gnome_vfs_init() since the composer now does
file operations (to get the MIME type of attachments).
svn path=/trunk/; revision=5495
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/main.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 4e6a4529a6..ce5f143a37 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-09-18 Dan Winship <danw@helixcode.com> + + * main.c (main): Call gnome_vfs_init() since the composer now does + file operations (to get the MIME type of attachments). + 2000-09-18 Jeffrey Stedfast <fejj@helixcode.com> * message-list.c: Removed COL_ONLINE_STATUS because we don't want diff --git a/mail/main.c b/mail/main.c index 7107340100..5207543d92 100644 --- a/mail/main.c +++ b/mail/main.c @@ -16,6 +16,7 @@ #include <bonobo/bonobo-object-directory.h> #include <glade/glade.h> #include <liboaf/liboaf.h> +#include <libgnomevfs/gnome-vfs.h> #ifdef GTKHTML_HAVE_GCONF #include <gconf/gconf.h> @@ -58,6 +59,8 @@ main (int argc, char *argv []) glade_gnome_init (); + gnome_vfs_init (); + e_unicode_init (); e_cursors_init (); |