diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2007-07-09 19:05:59 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2007-07-09 19:05:59 +0800 |
commit | 89b64f3d95b7d59b17a563e88ad18d08369ae064 (patch) | |
tree | 7b4af01b040e5f8f4f6a8bc4577ced7a2552a4fa /plugins/itip-formatter/itip-view.h | |
parent | 2da7cdde5b4537efa9b6fa11332e2a60ff222617 (diff) | |
download | gsoc2013-evolution-89b64f3d95b7d59b17a563e88ad18d08369ae064.tar gsoc2013-evolution-89b64f3d95b7d59b17a563e88ad18d08369ae064.tar.gz gsoc2013-evolution-89b64f3d95b7d59b17a563e88ad18d08369ae064.tar.bz2 gsoc2013-evolution-89b64f3d95b7d59b17a563e88ad18d08369ae064.tar.lz gsoc2013-evolution-89b64f3d95b7d59b17a563e88ad18d08369ae064.tar.xz gsoc2013-evolution-89b64f3d95b7d59b17a563e88ad18d08369ae064.tar.zst gsoc2013-evolution-89b64f3d95b7d59b17a563e88ad18d08369ae064.zip |
reviewed by: Veerapuram Varadhan <vvaradhan@novell.com>
2007-07-09 Chenthill Palanisamy <pchenthill@novell.com>
reviewed by: Veerapuram Varadhan <vvaradhan@novell.com>
* itip-formatter.c: (find_attendee), (find_attendee_if_sentby):
Finds the address of the account owner in the attendees list.
(find_to_address), (find_from_address): Establishes the current
account id.
(extract_itip_data), (view_response_cb), (format_itip_object),
(pitip_free): Sets the corresponding itip-view components.
* itip-view.h:
* itip-view.c: (set_calendar_sender_text),
(set_tasklist_sender_text), (set_journal_sender_text),
(itip_view_destroy), (itip_view_set_organizer_sentby),
(itip_view_get_organizer_sentby),
(itip_view_set_attendee_sentby),
(itip_view_get_attendee_sentby), (itip_view_set_proxy),
(itip_view_get_proxy): Sets the message appropriately in the
itip-view.
Committing on behalf of Suman Manjunath <msuman@novell.com>
svn path=/trunk/; revision=33783
Diffstat (limited to 'plugins/itip-formatter/itip-view.h')
-rw-r--r-- | plugins/itip-formatter/itip-view.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/itip-formatter/itip-view.h b/plugins/itip-formatter/itip-view.h index 9d12f6c65b..7ce75b194b 100644 --- a/plugins/itip-formatter/itip-view.h +++ b/plugins/itip-formatter/itip-view.h @@ -101,15 +101,21 @@ ECalSourceType itip_view_get_item_type (ItipView *view); void itip_view_set_organizer (ItipView *view, const char *organizer); const char *itip_view_get_organizer (ItipView *view); -void itip_view_set_sentby (ItipView *view, const char *sentby); -const char *itip_view_get_sentby (ItipView *view); +void itip_view_set_organizer_sentby (ItipView *view, const char *sentby); +const char *itip_view_get_organizer_sentby (ItipView *view); void itip_view_set_attendee (ItipView *view, const char *attendee); const char *itip_view_get_attendee (ItipView *view); +void itip_view_set_attendee_sentby (ItipView *view, const char *sentby); +const char *itip_view_get_attendee_sentby (ItipView *view); + void itip_view_set_delegator (ItipView *view, const char *delegator); const char *itip_view_get_delegator (ItipView *view); +void itip_view_set_proxy (ItipView *view, const char *proxy); +const char *itip_view_get_proxy (ItipView *view); + void itip_view_set_summary (ItipView *view, const char *summary); const char *itip_view_get_summary (ItipView *view); |