diff options
Diffstat (limited to 'my-evolution/e-summary-mail.c')
-rw-r--r-- | my-evolution/e-summary-mail.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/my-evolution/e-summary-mail.c b/my-evolution/e-summary-mail.c index ef45d70d35..43235fc320 100644 --- a/my-evolution/e-summary-mail.c +++ b/my-evolution/e-summary-mail.c @@ -23,13 +23,14 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif -#include <liboaf/liboaf.h> + #include <gal/widgets/e-unicode.h> -#include <libgnome/gnome-defs.h> #include <libgnome/gnome-i18n.h> #include <libgnome/gnome-util.h> /* gnome_util_prepend_user_home */ + #include <gtk/gtksignal.h> + #include <bonobo/bonobo-exception.h> #include <bonobo/bonobo-listener.h> #include <bonobo/bonobo-property-bag-client.h> @@ -37,6 +38,8 @@ #include <Evolution.h> #include <evolution-storage-listener.h> +#include <string.h> + #include "Mailer.h" #include "e-summary.h" #include "e-summary-mail.h" @@ -888,7 +891,7 @@ e_summary_folder_init_folder_store (GNOME_Evolution_Shell shell) folder_store->shell = shell; CORBA_exception_init (&ev); - folder_store->folder_info = oaf_activate_from_id (MAIL_IID, 0, NULL, &ev); + folder_store->folder_info = bonobo_activation_activate_from_id (MAIL_IID, 0, NULL, &ev); if (BONOBO_EX (&ev) || folder_store->folder_info == NULL) { g_warning ("Exception creating folderinfo: %s\n", CORBA_exception_id (&ev) ? CORBA_exception_id (&ev) : "(null)"); |