diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-27 23:13:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-29 00:13:23 +0800 |
commit | fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056 (patch) | |
tree | ae78be371695c3dc18847b87d3f014f985aa3a40 /calendar/gui/itip-utils.h | |
parent | 6f5464f34ceec9e5701e3e3e651a40f9e6b3a072 (diff) | |
download | gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.gz gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.tar.zst gsoc2013-evolution-fad4af8a3d4c6f50f7bcceca8d545eb17d6fd056.zip |
Prefer GLib basic types over C types.
Diffstat (limited to 'calendar/gui/itip-utils.h')
-rw-r--r-- | calendar/gui/itip-utils.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/calendar/gui/itip-utils.h b/calendar/gui/itip-utils.h index 8dce8266ab..c01fdbc676 100644 --- a/calendar/gui/itip-utils.h +++ b/calendar/gui/itip-utils.h @@ -39,10 +39,10 @@ typedef enum { } ECalComponentItipMethod; struct CalMimeAttach { - char *filename; - char *content_type; - char *description; - char *encoded_data; + gchar *filename; + gchar *content_type; + gchar *description; + gchar *encoded_data; gboolean disposition; guint length; }; @@ -56,13 +56,13 @@ gboolean itip_sentby_is_user (ECalComponent *comp, ECal *client); const gchar *itip_strip_mailto (const gchar *address); -char *itip_get_comp_attendee (ECalComponent *comp, ECal *client); +gchar *itip_get_comp_attendee (ECalComponent *comp, ECal *client); gboolean itip_send_comp (ECalComponentItipMethod method, ECalComponent *comp, ECal *client, icalcomponent *zones, GSList *attachments_list, GList *users, gboolean strip_alarms); -gboolean itip_publish_comp (ECal *client, gchar* uri, gchar* username, - gchar* password, ECalComponent **pub_comp); +gboolean itip_publish_comp (ECal *client, gchar * uri, gchar * username, + gchar * password, ECalComponent **pub_comp); gboolean itip_publish_begin (ECalComponent *pub_comp, ECal *client, gboolean cloned, ECalComponent **clone); |