aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog2
-rw-r--r--calendar/gui/dialogs/comp-editor.c25
2 files changed, 22 insertions, 5 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index dd55494189..60d8be4597 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -11,7 +11,7 @@
* gui/e-cal-view.h: delete the ECalViewMoveDirection type declaration
which was added by mistake yesterday.
- * Changelog: add a missed entry for calender-commands.c.
+ * ChangeLog: add a missed entry for calender-commands.c.
2004-01-07 Rodrigo Moya <rodrigo@ximian.com>
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index ef907aa162..e29c6c1ce6 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -393,8 +393,10 @@ save_comp (CompEditor *editor)
result = e_cal_create_object (priv->client, e_cal_component_get_icalcomponent (priv->comp), NULL, &error);
} else {
result = e_cal_modify_object (priv->client, e_cal_component_get_icalcomponent (priv->comp), priv->mod, &error);
- }
-
+ }
+
+ priv->updating = FALSE;
+
if (!result) {
GtkWidget *dlg;
char *msg;
@@ -428,8 +430,6 @@ save_comp (CompEditor *editor)
priv->changed = FALSE;
}
- priv->updating = FALSE;
-
return TRUE;
}
@@ -1525,10 +1525,27 @@ obj_modified_cb (ECal *client, GList *objects, gpointer data)
{
CompEditor *editor = COMP_EDITOR (data);
CompEditorPrivate *priv;
+ GList *l;
+ gboolean found = FALSE;
ECalComponent *comp = NULL;
priv = editor->priv;
+ /* see if the component being edited is one that has changed */
+ for (l = objects; l != NULL; l = l->next) {
+ const char *our_uid, *uid;
+
+ e_cal_component_get_uid (priv->comp, &our_uid);
+ uid = icalcomponent_get_uid (l->data);
+ if (uid && our_uid && strcmp (uid, our_uid) == 0) {
+ found = TRUE;
+ break;
+ }
+ }
+
+ if (!found)
+ return;
+
/* We queried based on a specific UID so we definitely changed */
if (priv->updating)
return;