set altrep to NULL on ECalComponentText's.
authorRodrigo Moya <rodrigo@ximian.com>
Mon, 2 Feb 2004 15:40:21 +0000 (15:40 +0000)
committerRodrigo Moya <rodrigo@src.gnome.org>
Mon, 2 Feb 2004 15:40:21 +0000 (15:40 +0000)
2004-02-02  Rodrigo Moya <rodrigo@ximian.com>

* backends/groupwise/e-gw-item.c (e_gw_item_to_calcomponent):
set altrep to NULL on ECalComponentText's.

calendar/ChangeLog
calendar/backends/groupwise/e-gw-item.c
servers/groupwise/e-gw-item.c

index 5c2cbe6..e796749 100644 (file)
@@ -1,5 +1,10 @@
 2004-02-02  Rodrigo Moya <rodrigo@ximian.com>
 
+       * backends/groupwise/e-gw-item.c (e_gw_item_to_calcomponent):
+       set altrep to NULL on ECalComponentText's.
+
+2004-02-02  Rodrigo Moya <rodrigo@ximian.com>
+
        * backends/groupwise/e-gw-item.c (e_gw_item_to_calcomponent): moved
        calls to e_cal_component_set_new_vtype up, so that the internal
        icalcomponent gets created. Added missing 'break' statement.
index 4f7201c..50b415d 100644 (file)
@@ -724,6 +724,7 @@ e_gw_item_to_cal_component (EGwItem *item)
 
        /* summary */
        text.value = e_gw_item_get_subject (item);
+       text.altrep = NULL;
        e_cal_component_set_summary (comp, &text);
 
        /* description */
@@ -732,6 +733,7 @@ e_gw_item_to_cal_component (EGwItem *item)
                GSList l;
 
                text.value = description;
+               text.altrep = NULL;
                l.data = &text;
                l.next = NULL;
 
index 4f7201c..50b415d 100644 (file)
@@ -724,6 +724,7 @@ e_gw_item_to_cal_component (EGwItem *item)
 
        /* summary */
        text.value = e_gw_item_get_subject (item);
+       text.altrep = NULL;
        e_cal_component_set_summary (comp, &text);
 
        /* description */
@@ -732,6 +733,7 @@ e_gw_item_to_cal_component (EGwItem *item)
                GSList l;
 
                text.value = description;
+               text.altrep = NULL;
                l.data = &text;
                l.next = NULL;