[evolution-data-server] Fix coding style.
- From: Matthew Barnes <mbarnes src gnome org>
- To: svn-commits-list gnome org
- Subject: [evolution-data-server] Fix coding style.
- Date: Sat, 13 Jun 2009 23:38:38 -0400 (EDT)
commit a329e83f6432836e9fd6e6281a353e9c6ac9154b
Author: Matthew Barnes <mbarnes redhat com>
Date: Sat Jun 13 22:45:56 2009 -0400
Fix coding style.
addressbook/backends/ldap/e-book-backend-ldap.c | 40 ++++----
calendar/backends/caldav/e-cal-backend-caldav.c | 14 ++--
camel/providers/groupwise/camel-groupwise-folder.c | 12 +-
.../groupwise/camel-groupwise-transport.c | 4 +-
camel/providers/imap/camel-imap-folder.c | 2 +-
servers/groupwise/e-gw-item.c | 114 ++++++++++----------
servers/groupwise/e-gw-item.h | 2 +-
7 files changed, 94 insertions(+), 94 deletions(-)
---
diff --git a/addressbook/backends/ldap/e-book-backend-ldap.c b/addressbook/backends/ldap/e-book-backend-ldap.c
index c4c01e4..356837a 100644
--- a/addressbook/backends/ldap/e-book-backend-ldap.c
+++ b/addressbook/backends/ldap/e-book-backend-ldap.c
@@ -1196,7 +1196,7 @@ ldap_error_to_response (gint ldap_error)
return GNOME_Evolution_Addressbook_OtherError;
}
-static const char *
+static const gchar *
get_dn_attribute_name (gchar *rootdn)
{
/* Use 'uid' is already used in root DN,
@@ -1217,17 +1217,17 @@ create_dn_from_contact (EContact *contact, gchar *rootdn)
cn = e_contact_get (contact, E_CONTACT_FAMILY_NAME);
if (cn) {
- int pos = 0;
+ gint pos = 0;
cn_part = g_malloc0 (strlen (cn) + 1);
while (cn[pos]) {
if (g_ascii_isalnum (cn[pos])) {
cn_part[pos] = g_ascii_tolower (cn[pos]);
- }
+ }
pos++;
}
}
- dn = g_strdup_printf ("%s=%s%s%lu",
+ dn = g_strdup_printf ("%s=%s%s%lu",
get_dn_attribute_name (rootdn),
(cn_part && *cn_part) ? cn_part : "",
(cn_part && *cn_part) ? "." : "",
@@ -1240,10 +1240,10 @@ create_dn_from_contact (EContact *contact, gchar *rootdn)
return dn;
}
-static char *
-create_full_dn_from_contact (gchar *dn, const char *root_dn)
+static gchar *
+create_full_dn_from_contact (gchar *dn, const gchar *root_dn)
{
- char *full_dn = g_strdup_printf ("%s%s%s", dn,
+ gchar *full_dn = g_strdup_printf ("%s%s%s", dn,
(root_dn && *root_dn) ? "," : "",
(root_dn && *root_dn) ? root_dn: "");
@@ -1292,12 +1292,12 @@ build_mods_from_contacts (EBookBackendLDAP *bl, EContact *current, EContact *new
/* add LDAP uid attribute, if given */
if (ldap_uid) {
- LDAPMod *mod = g_new (LDAPMod, 1);
+ LDAPMod *mod = g_new (LDAPMod, 1);
gchar *ldap_uid_value = strchr (ldap_uid, '=');
if (ldap_uid_value) {
mod->mod_op = LDAP_MOD_ADD;
mod->mod_type = g_strdup ("uid");
- mod->mod_values = g_new (char*, 2);
+ mod->mod_values = g_new (gchar *, 2);
mod->mod_values[0] = g_strdup (ldap_uid_value+1);
mod->mod_values[1] = NULL;
g_ptr_array_add (result, mod);
@@ -1392,7 +1392,7 @@ build_mods_from_contacts (EBookBackendLDAP *bl, EContact *current, EContact *new
need to update the dn if it's one of the
attributes we compute the dn from. */
if (new_dn_needed) {
- const char *current_dn = e_contact_get_const (current, E_CONTACT_UID);
+ const gchar *current_dn = e_contact_get_const (current, E_CONTACT_UID);
/* check, if this attribute's name is found in the uid string */
if (current_dn && current_prop) {
@@ -2014,7 +2014,7 @@ modify_contact_search_handler (LDAPOp *op, LDAPMessage *res)
/* UID rename necessary? */
if (new_dn_needed) {
- const char *current_dn = e_contact_get_const (modify_op->current_contact, E_CONTACT_UID);
+ const gchar *current_dn = e_contact_get_const (modify_op->current_contact, E_CONTACT_UID);
gchar *new_uid;
if (modify_op->ldap_uid)
@@ -2031,8 +2031,8 @@ modify_contact_search_handler (LDAPOp *op, LDAPMessage *res)
#endif
if (current_dn && new_uid && modify_op->new_id) {
EBookBackendLDAP *bl = E_BOOK_BACKEND_LDAP (op->backend);
- int ldap_error;
- int rename_contact_msgid;
+ gint ldap_error;
+ gint rename_contact_msgid;
/* actually perform the ldap rename */
g_static_rec_mutex_lock (&eds_ldap_handler_lock);
@@ -2071,7 +2071,7 @@ modify_contact_search_handler (LDAPOp *op, LDAPMessage *res)
} else {
/* no renaming necessary, just call the modify function */
modify_op->new_id = NULL;
- modify_contact_rename_handler (op, NULL);
+ modify_contact_rename_handler (op, NULL);
}
}
}
@@ -2081,11 +2081,11 @@ modify_contact_rename_handler (LDAPOp *op, LDAPMessage *res)
{
LDAPModifyOp *modify_op = (LDAPModifyOp*)op;
EBookBackendLDAP *bl = E_BOOK_BACKEND_LDAP (op->backend);
- char *ldap_error_msg;
- int ldap_error;
+ gchar *ldap_error_msg;
+ gint ldap_error;
LDAPMod **ldap_mods;
gboolean differences;
- int modify_contact_msgid;
+ gint modify_contact_msgid;
g_static_rec_mutex_lock (&eds_ldap_handler_lock);
if (!bl->priv->ldap) {
@@ -2159,7 +2159,7 @@ modify_contact_rename_handler (LDAPOp *op, LDAPMessage *res)
ldap_mods = (LDAPMod**)modify_op->mod_array->pdata;
#ifdef LDAP_DEBUG_MODIFY
{
- int i;
+ gint i;
printf ("Sending the following to the server as MOD\n");
for (i = 0; g_ptr_array_index(modify_op->mod_array, i); i ++) {
@@ -2178,11 +2178,11 @@ modify_contact_rename_handler (LDAPOp *op, LDAPMessage *res)
printf (" %s:\n", mod->mod_type);
if (mod->mod_op & LDAP_MOD_BVALUES) {
- int j;
+ gint j;
for (j = 0; mod->mod_bvalues[j] && mod->mod_bvalues[j]->bv_val; j++)
printf ("\t\t'%s'\n", mod->mod_bvalues[j]->bv_val);
} else {
- int j;
+ gint j;
for (j = 0; mod->mod_values[j]; j++)
printf ("\t\t'%s'\n", mod->mod_values[j]);
}
diff --git a/calendar/backends/caldav/e-cal-backend-caldav.c b/calendar/backends/caldav/e-cal-backend-caldav.c
index 279794b..a58eab1 100644
--- a/calendar/backends/caldav/e-cal-backend-caldav.c
+++ b/calendar/backends/caldav/e-cal-backend-caldav.c
@@ -783,7 +783,7 @@ out:
/* returns whether was able to read the xpath_value from the server's response; *value contains the result */
static gboolean
-parse_propfind_response (SoupMessage *message, const char *xpath_status, const char *xpath_value, gchar **value)
+parse_propfind_response (SoupMessage *message, const gchar *xpath_status, const gchar *xpath_value, gchar **value)
{
xmlXPathContextPtr xpctx;
xmlDocPtr doc;
@@ -1225,7 +1225,7 @@ caldav_server_get_object (ECalBackendCalDAV *cbdav, CalDAVObject *object)
}
static ECalBackendSyncStatus
-caldav_post_freebusy (ECalBackendCalDAV *cbdav, const char *url, gchar **post_fb)
+caldav_post_freebusy (ECalBackendCalDAV *cbdav, const gchar *url, gchar **post_fb)
{
ECalBackendCalDAVPrivate *priv;
SoupMessage *message;
@@ -1234,7 +1234,7 @@ caldav_post_freebusy (ECalBackendCalDAV *cbdav, const char *url, gchar **post_fb
g_return_val_if_fail (url != NULL, GNOME_Evolution_Calendar_OtherError);
g_return_val_if_fail (post_fb != NULL, GNOME_Evolution_Calendar_OtherError);
g_return_val_if_fail (*post_fb != NULL, GNOME_Evolution_Calendar_OtherError);
-
+
priv = E_CAL_BACKEND_CALDAV_GET_PRIVATE (cbdav);
message = soup_message_new (SOUP_METHOD_POST, url);
@@ -1427,14 +1427,14 @@ caldav_receive_schedule_outbox_url (ECalBackendCalDAV *cbdav)
xmlDocPtr doc;
xmlNodePtr root, node;
xmlNsPtr nsdav;
- char *owner = NULL;
+ gchar *owner = NULL;
g_return_val_if_fail (cbdav != NULL, FALSE);
priv = E_CAL_BACKEND_CALDAV_GET_PRIVATE (cbdav);
g_return_val_if_fail (priv != NULL, FALSE);
g_return_val_if_fail (priv->schedule_outbox_url == NULL, TRUE);
-
+
/* Prepare the soup message */
message = soup_message_new ("PROPFIND", priv->uri);
if (message == NULL)
@@ -3658,7 +3658,7 @@ caldav_get_free_busy (ECalBackendSync *backend,
ECalComponentDateTime dt;
struct icaltimetype dtvalue;
icaltimezone *utc;
- char *str;
+ gchar *str;
GList *u;
GSList *attendees = NULL, *to_free = NULL;
@@ -3779,7 +3779,7 @@ caldav_get_free_busy (ECalBackendSync *backend,
icalcomp = icalparser_parse_string (tmp);
if (icalcomp && extract_objects (icalcomp, ICAL_VFREEBUSY_COMPONENT, &objects) == GNOME_Evolution_Calendar_Success) {
for (o = objects; o; o = o->next) {
- char *obj_str = icalcomponent_as_ical_string_r (o->data);
+ gchar *obj_str = icalcomponent_as_ical_string_r (o->data);
if (obj_str && *obj_str)
*freebusy = g_list_append (*freebusy, obj_str);
diff --git a/camel/providers/groupwise/camel-groupwise-folder.c b/camel/providers/groupwise/camel-groupwise-folder.c
index 61a6961..d51c328 100644
--- a/camel/providers/groupwise/camel-groupwise-folder.c
+++ b/camel/providers/groupwise/camel-groupwise-folder.c
@@ -1434,10 +1434,10 @@ get_md5_digest (const guchar *str)
guint8 *digest;
gsize length;
GChecksum *checksum;
-
+
length = g_checksum_type_get_length (G_CHECKSUM_MD5);
digest = g_alloca (length);
-
+
checksum = g_checksum_new (G_CHECKSUM_MD5);
g_checksum_update (checksum, str, -1);
g_checksum_get_digest (checksum, digest, &length);
@@ -1455,7 +1455,7 @@ groupwise_folder_set_threading_data (CamelGroupwiseMessageInfo *mi, EGwItem *ite
struct _camel_header_references *refs, *scan;
guint8 *digest;
gchar *msgid;
-
+
if (!message_id)
return;
@@ -1480,7 +1480,7 @@ groupwise_folder_set_threading_data (CamelGroupwiseMessageInfo *mi, EGwItem *ite
while (scan) {
digest = get_md5_digest ((const guchar *) scan->id);
memcpy(mi->info.references->references [count].id.hash, digest, sizeof(mi->info.message_id.id.hash));
-
+
count++;
scan = scan->next;
}
@@ -1682,7 +1682,7 @@ gw_update_cache (CamelFolder *folder, GList *list, CamelException *ex, gboolean
mi->info.size = e_gw_item_get_mail_size (item);
mi->info.subject = camel_pstring_strdup(e_gw_item_get_subject(item));
groupwise_folder_set_threading_data (mi, item);
-
+
camel_folder_summary_add (folder->summary,(CamelMessageInfo *)mi);
camel_folder_change_info_add_uid (changes, mi->info.uid);
camel_folder_change_info_recent_uid (changes, mi->info.uid);
@@ -2063,7 +2063,7 @@ groupwise_folder_item_to_msg( CamelFolder *folder,
if (parent_threads)
camel_medium_add_header (CAMEL_MEDIUM (msg), "References", parent_threads);
}
-
+
/* set item id */
camel_medium_add_header (CAMEL_MEDIUM (msg), "X-GW-ITEM-ID", uid);
diff --git a/camel/providers/groupwise/camel-groupwise-transport.c b/camel/providers/groupwise/camel-groupwise-transport.c
index 3aa65af..3c66929 100644
--- a/camel/providers/groupwise/camel-groupwise-transport.c
+++ b/camel/providers/groupwise/camel-groupwise-transport.c
@@ -188,7 +188,7 @@ groupwise_send_to (CamelTransport *transport,
}
item = camel_groupwise_util_item_from_message (cnc, message, from);
-
+
reply_request = (gchar *)camel_medium_get_header (CAMEL_MEDIUM (message), "X-GW-ORIG-ITEM-ID");
if (reply_request) {
gchar *id;
@@ -197,7 +197,7 @@ groupwise_send_to (CamelTransport *transport,
id = (gchar *)g_malloc0 (len-1);
id = memcpy(id, reply_request+2, len-3);
status = e_gw_connection_reply_item (cnc, id, REPLY_VIEW, &temp_item);
- if (status != E_GW_CONNECTION_STATUS_OK)
+ if (status != E_GW_CONNECTION_STATUS_OK)
g_warning ("Could not send a replyRequest...continuing without!!\n");
else {
info = e_gw_item_get_link_info (temp_item);
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c
index 1a3ac21..f32ee32 100644
--- a/camel/providers/imap/camel-imap-folder.c
+++ b/camel/providers/imap/camel-imap-folder.c
@@ -1205,7 +1205,7 @@ get_message_uid (CamelFolder *folder, CamelImapMessageInfo *info)
uid = camel_message_info_uid (info);
g_return_val_if_fail (uid != NULL, NULL);
- if (!isdigit ((unsigned char)*uid)) {
+ if (!isdigit ((guchar)*uid)) {
uid = camel_imap_journal_uidmap_lookup ((CamelIMAPJournal *) CAMEL_IMAP_FOLDER (folder)->journal, uid);
g_return_val_if_fail (uid != NULL, NULL);
}
diff --git a/servers/groupwise/e-gw-item.c b/servers/groupwise/e-gw-item.c
index 7be1d15..d14e06b 100644
--- a/servers/groupwise/e-gw-item.c
+++ b/servers/groupwise/e-gw-item.c
@@ -485,8 +485,8 @@ e_gw_item_dispose (GObject *object)
if (priv->creation_date) {
g_free (priv->creation_date);
priv->creation_date = NULL;
- }
-
+ }
+
if (priv->message_id) {
g_free (priv->message_id);
priv->message_id = NULL;
@@ -593,15 +593,15 @@ e_gw_item_get_type (void)
if (!type) {
static GTypeInfo info = {
- sizeof (EGwItemClass),
- (GBaseInitFunc) NULL,
- (GBaseFinalizeFunc) NULL,
- (GClassInitFunc) e_gw_item_class_init,
- NULL, NULL,
- sizeof (EGwItem),
- 0,
- (GInstanceInitFunc) e_gw_item_init
- };
+ sizeof (EGwItemClass),
+ (GBaseInitFunc) NULL,
+ (GBaseFinalizeFunc) NULL,
+ (GClassInitFunc) e_gw_item_class_init,
+ NULL, NULL,
+ sizeof (EGwItem),
+ 0,
+ (GInstanceInitFunc) e_gw_item_init
+ };
type = g_type_register_static (G_TYPE_OBJECT, "EGwItem", &info, 0);
}
@@ -638,46 +638,46 @@ e_gw_item_new_empty (void)
static void
set_recipient_list_from_soap_parameter (EGwItem *item, SoupSoapParameter *param)
{
- SoupSoapParameter *param_recipient;
- gchar *email, *cn;
+ SoupSoapParameter *param_recipient;
+ gchar *email, *cn;
EGwItemRecipient *recipient;
GList *email_list;
email_list = e_gw_item_get_email_list (item);
- for (param_recipient = soup_soap_parameter_get_first_child_by_name (param, "recipient");
- param_recipient != NULL;
- param_recipient = soup_soap_parameter_get_next_child_by_name (param_recipient, "recipient")) {
- SoupSoapParameter *subparam;
+ for (param_recipient = soup_soap_parameter_get_first_child_by_name (param, "recipient");
+ param_recipient != NULL;
+ param_recipient = soup_soap_parameter_get_next_child_by_name (param_recipient, "recipient")) {
+ SoupSoapParameter *subparam;
recipient = g_new0 (EGwItemRecipient, 1);
- subparam = soup_soap_parameter_get_first_child_by_name (param_recipient, "email");
- if (subparam) {
- email = soup_soap_parameter_get_string_value (subparam);
- if (email)
- recipient->email = email;
- }
- subparam = soup_soap_parameter_get_first_child_by_name (param_recipient, "displayName");
- if (subparam) {
- cn = soup_soap_parameter_get_string_value (subparam);
- if (cn)
- recipient->display_name = cn;
- }
-
- subparam = soup_soap_parameter_get_first_child_by_name (param_recipient, "distType");
- if (subparam) {
- gchar *dist_type;
- dist_type = soup_soap_parameter_get_string_value (subparam);
- if (!strcmp (dist_type, "TO"))
- recipient->type = E_GW_ITEM_RECIPIENT_TO;
- else if (!strcmp (dist_type, "CC"))
- recipient->type = E_GW_ITEM_RECIPIENT_CC;
+ subparam = soup_soap_parameter_get_first_child_by_name (param_recipient, "email");
+ if (subparam) {
+ email = soup_soap_parameter_get_string_value (subparam);
+ if (email)
+ recipient->email = email;
+ }
+ subparam = soup_soap_parameter_get_first_child_by_name (param_recipient, "displayName");
+ if (subparam) {
+ cn = soup_soap_parameter_get_string_value (subparam);
+ if (cn)
+ recipient->display_name = cn;
+ }
+
+ subparam = soup_soap_parameter_get_first_child_by_name (param_recipient, "distType");
+ if (subparam) {
+ gchar *dist_type;
+ dist_type = soup_soap_parameter_get_string_value (subparam);
+ if (!strcmp (dist_type, "TO"))
+ recipient->type = E_GW_ITEM_RECIPIENT_TO;
+ else if (!strcmp (dist_type, "CC"))
+ recipient->type = E_GW_ITEM_RECIPIENT_CC;
else if (!strcmp (dist_type, "BC"))
recipient->type = E_GW_ITEM_RECIPIENT_BC;
- else
+ else
recipient->type = E_GW_ITEM_RECIPIENT_NONE;
g_free (dist_type);
- }
+ }
/*FIXME gw recipientTypes need to be added after the server is fixed. */
@@ -685,7 +685,7 @@ set_recipient_list_from_soap_parameter (EGwItem *item, SoupSoapParameter *param)
look for accepted/declined and update the item else set it
to none. */
subparam = soup_soap_parameter_get_first_child_by_name (param_recipient, "recipientStatus");
- if (subparam) {
+ if (subparam) {
gchar *formatted_date, *value;
SoupSoapParameter *temp_param;
@@ -745,8 +745,7 @@ set_recipient_list_from_soap_parameter (EGwItem *item, SoupSoapParameter *param)
g_free (value), value = NULL;
g_free (formatted_date), formatted_date = NULL;
}
- }
- else {
+ } else {
/* if recipientStatus is not provided, use the
* self_status, obtained from the mail properties. */
if (!strcmp ((const gchar *)email_list->data, recipient->email))
@@ -756,9 +755,10 @@ set_recipient_list_from_soap_parameter (EGwItem *item, SoupSoapParameter *param)
recipient->status = E_GW_ITEM_STAT_NONE;
}
- item->priv->recipient_list = g_slist_append (item->priv->recipient_list, recipient);
- }
+ item->priv->recipient_list = g_slist_append (item->priv->recipient_list, recipient);
+ }
}
+
static EGwItemReturnNotify
get_notification_value (SoupSoapParameter *param, const gchar *param_name)
{
@@ -965,13 +965,13 @@ e_gw_item_get_category_name (EGwItem *item)
return item->priv->category_name;
}
-const gchar*
+const gchar *
e_gw_item_get_parent_thread_ids (EGwItem *item)
{
return item->priv->parent_threads;
}
-const gchar*
+const gchar *
e_gw_item_get_message_id (EGwItem *item)
{
return item->priv->message_id;
@@ -1123,7 +1123,7 @@ static void
set_contact_fields_from_soap_parameter (EGwItem *item, SoupSoapParameter *param)
{
gchar *value;
- gchar *type;
+ gchar *type;
gchar *primary_email;
SoupSoapParameter *subparam;
SoupSoapParameter *temp;
@@ -1697,7 +1697,7 @@ append_group_fields_to_soap_message (EGwItem *item, SoupSoapMessage *msg)
simple_fields = item->priv->simple_fields;
append_common_addressbook_item_fields_to_soap_message (simple_fields, item->priv->category_list, msg);
if (item->priv->container)
- e_gw_message_write_string_parameter (msg, "container", NULL, item->priv->container);
+ e_gw_message_write_string_parameter (msg, "container", NULL, item->priv->container);
soup_soap_message_start_element (msg, "members", NULL, NULL);
members = g_list_copy (item->priv->member_list);
for (; members != NULL; members = g_list_next (members)) {
@@ -1717,7 +1717,7 @@ EGwItem *
e_gw_item_new_from_soap_parameter (const gchar *email, const gchar *container, SoupSoapParameter *param)
{
EGwItem *item;
- gchar *item_type, *internet_prop;
+ gchar *item_type, *internet_prop;
SoupSoapParameter *subparameter, *child, *category_param, *attachment_param;
gboolean is_group_item = TRUE;
GList *user_email = NULL;
@@ -2114,11 +2114,11 @@ e_gw_item_new_from_soap_parameter (const gchar *email, const gchar *container, S
g_free (enabled);
} else if (!g_ascii_strcasecmp (name, "threading")) {
SoupSoapParameter *subparam;
-
- subparam = soup_soap_parameter_get_first_child_by_name (child, "parent") ;
- if (subparam)
- item->priv->parent_threads = soup_soap_parameter_get_string_value (subparam);
-
+
+ subparam = soup_soap_parameter_get_first_child_by_name (child, "parent");
+ if (subparam)
+ item->priv->parent_threads = soup_soap_parameter_get_string_value (subparam);
+
} else if (!g_ascii_strcasecmp (name, "messageId")) {
item->priv->message_id = soup_soap_parameter_get_string_value (child);
}
@@ -3420,7 +3420,7 @@ e_gw_item_append_to_soap_message (EGwItem *item, SoupSoapMessage *msg)
append_contact_fields_to_soap_message (item, msg);
soup_soap_message_end_element(msg);
return TRUE;
- case E_GW_ITEM_TYPE_GROUP :
+ case E_GW_ITEM_TYPE_GROUP :
soup_soap_message_add_attribute (msg, "type", "Group", "xsi", NULL);
append_group_fields_to_soap_message (item, msg);
soup_soap_message_end_element(msg);
@@ -3625,7 +3625,7 @@ e_gw_item_append_changes_to_soap_message (EGwItem *item, SoupSoapMessage *msg)
append_contact_changes_to_soap_message (item, msg, E_GW_ITEM_CHANGE_TYPE_DELETE);
soup_soap_message_end_element(msg);
return TRUE;
- case E_GW_ITEM_TYPE_GROUP :
+ case E_GW_ITEM_TYPE_GROUP :
soup_soap_message_start_element (msg, "update", NULL, NULL);
value = g_hash_table_lookup (item->priv->simple_fields, "name");
if (value)
diff --git a/servers/groupwise/e-gw-item.h b/servers/groupwise/e-gw-item.h
index 8293c0c..f76979c 100644
--- a/servers/groupwise/e-gw-item.h
+++ b/servers/groupwise/e-gw-item.h
@@ -305,7 +305,7 @@ gboolean e_gw_item_has_attachment (EGwItem *item);
gboolean e_gw_item_is_from_internet (EGwItem *item);
const gchar *e_gw_item_get_parent_thread_ids (EGwItem *item);
-const gchar* e_gw_item_get_message_id (EGwItem *item);
+const gchar * e_gw_item_get_message_id (EGwItem *item);
typedef struct {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]