aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-component.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2005-06-02 12:30:16 +0800
committerMichael Zucci <zucchi@src.gnome.org>2005-06-02 12:30:16 +0800
commit84dd2e3f792d59dadacb9eb3bea0ad719002643a (patch)
tree2e28032d2bd8a0c1331222b21f6d533fc21e3eb4 /mail/mail-component.h
parentdf95abe3008bfdf1385ec04485d796514f15cfd2 (diff)
downloadgsoc2013-evolution-84dd2e3f792d59dadacb9eb3bea0ad719002643a.tar
gsoc2013-evolution-84dd2e3f792d59dadacb9eb3bea0ad719002643a.tar.gz
gsoc2013-evolution-84dd2e3f792d59dadacb9eb3bea0ad719002643a.tar.bz2
gsoc2013-evolution-84dd2e3f792d59dadacb9eb3bea0ad719002643a.tar.lz
gsoc2013-evolution-84dd2e3f792d59dadacb9eb3bea0ad719002643a.tar.xz
gsoc2013-evolution-84dd2e3f792d59dadacb9eb3bea0ad719002643a.tar.zst
gsoc2013-evolution-84dd2e3f792d59dadacb9eb3bea0ad719002643a.zip
change this to sub-class evolution-component, not bonobo-object.
2005-06-02 Not Zed <NotZed@Ximian.com> * mail-component.c: change this to sub-class evolution-component, not bonobo-object. * Evolution-Mail.idl: Made the mail component sub-class Evolution.Component so it can add new interfaces for remote gui mail operations. svn path=/trunk/; revision=29444
Diffstat (limited to 'mail/mail-component.h')
-rw-r--r--mail/mail-component.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/mail-component.h b/mail/mail-component.h
index baaf2ea2fd..d8e0dbaba4 100644
--- a/mail/mail-component.h
+++ b/mail/mail-component.h
@@ -27,8 +27,8 @@
#define _MAIL_COMPONENT_H_
#include <bonobo/bonobo-object.h>
-
-#include "shell/Evolution.h"
+#include "shell/evolution-component.h"
+#include "Evolution-Mail.h"
struct _CamelStore;
@@ -51,15 +51,15 @@ enum _mail_component_folder_t {
};
struct _MailComponent {
- BonoboObject parent;
+ EvolutionComponent parent;
MailComponentPrivate *priv;
};
struct _MailComponentClass {
- BonoboObjectClass parent_class;
+ EvolutionComponentClass parent_class;
- POA_GNOME_Evolution_Component__epv epv;
+ POA_GNOME_Evolution_MailComponent__epv epv;
};
GType mail_component_get_type (void);