aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorBharath Acharya <abharath@novell.com>2008-12-29 13:57:28 +0800
committerBharath Acharya <abharath@src.gnome.org>2008-12-29 13:57:28 +0800
commitb24fc3e455eca8d5dcb9119ce8a47af83dec494f (patch)
tree942a46527c9e5e5ac58bf7cb4f7950d2687d6ff3 /calendar
parentc51b91d1e34f5e731bc2f1c9e2fd203f2bdf18f5 (diff)
downloadgsoc2013-evolution-b24fc3e455eca8d5dcb9119ce8a47af83dec494f.tar
gsoc2013-evolution-b24fc3e455eca8d5dcb9119ce8a47af83dec494f.tar.gz
gsoc2013-evolution-b24fc3e455eca8d5dcb9119ce8a47af83dec494f.tar.bz2
gsoc2013-evolution-b24fc3e455eca8d5dcb9119ce8a47af83dec494f.tar.lz
gsoc2013-evolution-b24fc3e455eca8d5dcb9119ce8a47af83dec494f.tar.xz
gsoc2013-evolution-b24fc3e455eca8d5dcb9119ce8a47af83dec494f.tar.zst
gsoc2013-evolution-b24fc3e455eca8d5dcb9119ce8a47af83dec494f.zip
** Fix for bug #439998 (bnc)
2008-12-29 Bharath Acharya <abharath@novell.com> ** Fix for bug #439998 (bnc) * gui/dialogs/comp-editor.c: (remove_event_dialog), (action_save_cb): Ask the user if he wants to remove the delegated events or keep a copy. svn path=/trunk/; revision=36940
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/gui/dialogs/comp-editor.c46
2 files changed, 52 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index b19b257e23..d9c7f764f2 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,11 @@
+2008-12-29 Bharath Acharya <abharath@novell.com>
+
+ ** Fix for bug #439998 (bnc)
+
+ * gui/dialogs/comp-editor.c: (remove_event_dialog),
+ (action_save_cb): Ask the user if he wants to remove the delegated
+ events or keep a copy.
+
2008-12-22 Milan Crha <mcrha@redhat.com>
** Fix for bug #559604
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 518abd055e..04f910745b 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -1102,6 +1102,24 @@ action_print_preview_cb (GtkAction *action,
g_object_unref (comp);
}
+static gboolean
+remove_event_dialog (ECal *client,
+ ECalComponent *comp,
+ GtkWindow *parent)
+{
+ GtkWidget *dialog;
+ gboolean ret;
+
+ g_return_val_if_fail (E_IS_CAL_COMPONENT (comp), TRUE);
+
+ dialog = gtk_message_dialog_new (parent, 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, "%s", _("Keep original item?"));
+ gtk_window_set_resizable (GTK_WINDOW (dialog), TRUE);
+ ret = gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_YES;
+ gtk_widget_destroy (dialog);
+
+ return ret;
+}
+
static void
action_save_cb (GtkAction *action,
CompEditor *editor)
@@ -1153,9 +1171,33 @@ action_save_cb (GtkAction *action,
if (!text.value)
if (!send_component_prompt_subject ((GtkWindow *) editor, priv->client, priv->comp))
return;
- if (save_comp_with_send (editor))
- close_dialog (editor);
+ if (save_comp_with_send (editor)) {
+ CompEditorFlags flags;
+ gboolean delegate;
+
+ flags = comp_editor_get_flags (editor);
+ delegate = flags & COMP_EDITOR_DELEGATE;
+
+ if (delegate && !remove_event_dialog (priv->client, priv->comp, GTK_WINDOW (editor))) {
+ const char *uid = NULL;
+ GError *error = NULL;
+
+ e_cal_component_get_uid (priv->comp, &uid);
+
+ if (e_cal_component_is_instance (priv->comp) || e_cal_component_has_recurrences (priv->comp)) {
+ gchar *rid;
+ rid = e_cal_component_get_recurid_as_string (priv->comp);
+ e_cal_remove_object_with_mod (priv->client, uid, rid, priv->mod, &error);
+ g_free (rid);
+ } else
+ e_cal_remove_object (priv->client, uid, &error);
+
+ g_clear_error (&error);
+ }
+ }
+
+ close_dialog (editor);
}
static void