diff options
author | Milan Crha <mcrha@redhat.com> | 2012-08-09 14:13:18 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-08-09 14:13:18 +0800 |
commit | 3006d8df9251282e342cc70d6045679fd4b36f17 (patch) | |
tree | 937f6a60e0f261606bf33a13ff913399d2c67b81 | |
parent | 967b238b77c1912c33e1a508781d9124b9e351a7 (diff) | |
download | gsoc2013-evolution-3006d8df9251282e342cc70d6045679fd4b36f17.tar.gz gsoc2013-evolution-3006d8df9251282e342cc70d6045679fd4b36f17.tar.zst gsoc2013-evolution-3006d8df9251282e342cc70d6045679fd4b36f17.zip |
Fix redefinition of EMailPartItip in itip-view.h
-rw-r--r-- | modules/itip-formatter/itip-view.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/itip-formatter/itip-view.h b/modules/itip-formatter/itip-view.h index 90558e7408..ab8b0b8e20 100644 --- a/modules/itip-formatter/itip-view.h +++ b/modules/itip-formatter/itip-view.h @@ -44,7 +44,8 @@ G_BEGIN_DECLS typedef struct _ItipView ItipView; typedef struct _ItipViewPrivate ItipViewPrivate; typedef struct _ItipViewClass ItipViewClass; -typedef struct _EMailPartItip EMailPartItip; + +struct _EMailPartItip; typedef enum { ITIP_VIEW_MODE_NONE, @@ -97,7 +98,7 @@ struct _ItipViewClass { GType itip_view_get_type (void); -ItipView * itip_view_new (EMailPartItip *puri, +ItipView * itip_view_new (struct _EMailPartItip *puri, ESourceRegistry *registry); void itip_view_init_view (ItipView *view); @@ -110,7 +111,8 @@ void itip_view_write_for_printing (ItipView *view, void itip_view_create_dom_bindings (ItipView *view, WebKitDOMElement *element); -EMailPartItip * itip_view_get_mail_part (ItipView *view); +struct _EMailPartItip * + itip_view_get_mail_part (ItipView *view); ESourceRegistry * itip_view_get_registry (ItipView *view); const gchar * itip_view_get_extension_name (ItipView *view); |