summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSivaiah Nallagatla <snallagatla@novell.com>2004-05-25 12:04:35 +0000
committerSivaiah Nallagatla <siva@src.gnome.org>2004-05-25 12:04:35 +0000
commit5d2042a8ef410517abe873a69861fee3adf6eded (patch)
tree914d4aa56e785f0247ced82112ac3856d13a3a89
parent957a5294f9d9e696622651c23fca5a8a5ad643cd (diff)
downloadevolution-data-server-5d2042a8ef410517abe873a69861fee3adf6eded.tar.gz
add a case of organization type also, its handling is same as contact
2004-05-25 Sivaiah Nallagatla <snallagatla@novell.com> * e-gw-item.c (e_gw_item_append_changes_to_soap_message) : add a case of organization type also, its handling is same as contact
-rw-r--r--servers/groupwise/ChangeLog5
-rw-r--r--servers/groupwise/e-gw-item.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/servers/groupwise/ChangeLog b/servers/groupwise/ChangeLog
index a363d6c70..bcc4849cd 100644
--- a/servers/groupwise/ChangeLog
+++ b/servers/groupwise/ChangeLog
@@ -1,3 +1,8 @@
+2004-05-25 Sivaiah Nallagatla <snallagatla@novell.com>
+
+ * e-gw-item.c (e_gw_item_append_changes_to_soap_message) : add a case of
+ organization type also, its handling is same as contact
+
2004-05-18 Harish Krishnaswamy <kharish@novell.com>
Fixes #56320 and related timezone issues.
diff --git a/servers/groupwise/e-gw-item.c b/servers/groupwise/e-gw-item.c
index 49f3ab13c..a306d9dbe 100644
--- a/servers/groupwise/e-gw-item.c
+++ b/servers/groupwise/e-gw-item.c
@@ -1927,6 +1927,7 @@ e_gw_item_append_changes_to_soap_message (EGwItem *item, SoupSoapMessage *msg)
switch (priv->item_type) {
case E_GW_ITEM_TYPE_CONTACT :
+ case E_GW_ITEM_TYPE_ORGANISATION :
append_contact_changes_to_soap_message (item, msg, E_GW_ITEM_CHANGE_TYPE_ADD);
append_contact_changes_to_soap_message (item, msg, E_GW_ITEM_CHANGE_TYPE_UPDATE);
append_contact_changes_to_soap_message (item, msg, E_GW_ITEM_CHANGE_TYPE_DELETE);