aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-09-23 19:42:18 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-09-23 19:42:18 +0800
commitdd797d23c8de2d4971ea395b59b239b13866e8e4 (patch)
treeb55faa1c0a6ad81156176494a171c4c506d8394c /calendar
parentac1a2a03176315bf55a9c840c3dd7b808757a5ab (diff)
downloadgsoc2013-evolution-dd797d23c8de2d4971ea395b59b239b13866e8e4.tar
gsoc2013-evolution-dd797d23c8de2d4971ea395b59b239b13866e8e4.tar.gz
gsoc2013-evolution-dd797d23c8de2d4971ea395b59b239b13866e8e4.tar.bz2
gsoc2013-evolution-dd797d23c8de2d4971ea395b59b239b13866e8e4.tar.lz
gsoc2013-evolution-dd797d23c8de2d4971ea395b59b239b13866e8e4.tar.xz
gsoc2013-evolution-dd797d23c8de2d4971ea395b59b239b13866e8e4.tar.zst
gsoc2013-evolution-dd797d23c8de2d4971ea395b59b239b13866e8e4.zip
** Fix for bug #553273
2008-09-23 Milan Crha <mcrha@redhat.com> ** Fix for bug #553273 * addressbook/gui/component/addressbook-view.c: (delete_addressbook_folder), (delete_addressbook_cb): * addressbook/gui/widgets/eab-gui-util.c: (save_it): * addressbook/gui/contact-list-editor/e-contact-list-model.c: (e_contact_list_model_add_email): * addressbook/gui/contact-list-editor/e-contact-list-editor.c: (contact_list_editor_contact_exists): * plugins/exchange-operations/exchange-config-listener.c: (exchange_config_listener_authenticate): * mail/em-composer-utils.c: (em_utils_handle_receipt): * mail/em-folder-view.c: (emfv_delete_msg_response): * composer/e-composer-actions.c: (action_save_cb): * calendar/gui/alarm-notify/alarm-queue.c: (edit_component): * calendar/gui/tasks-component.c: (delete_task_list_cb): * calendar/gui/calendar-component.c: (delete_calendar_cb): * calendar/gui/memos-component.c: (delete_memo_list_cb): Always end e_error_run/e_error_new calls with NULL parameter. svn path=/trunk/; revision=36434
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog10
-rw-r--r--calendar/gui/alarm-notify/alarm-queue.c4
-rw-r--r--calendar/gui/calendar-component.c2
-rw-r--r--calendar/gui/memos-component.c2
-rw-r--r--calendar/gui/tasks-component.c2
5 files changed, 15 insertions, 5 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 7f40efb87c..a774288a9f 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,13 @@
+2008-09-23 Milan Crha <mcrha@redhat.com>
+
+ ** Part of fix for bug #553273
+
+ * gui/alarm-notify/alarm-queue.c: (edit_component):
+ * gui/tasks-component.c: (delete_task_list_cb):
+ * gui/calendar-component.c: (delete_calendar_cb):
+ * gui/memos-component.c: (delete_memo_list_cb):
+ Always end e_error_run/e_error_new calls with NULL parameter.
+
2008-09-19 Sankar P <psankar@novell.com>
License Changes
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c
index 1e7f498f7a..f320ccc42b 100644
--- a/calendar/gui/alarm-notify/alarm-queue.c
+++ b/calendar/gui/alarm-notify/alarm-queue.c
@@ -930,7 +930,7 @@ edit_component (ECal *client, ECalComponent *comp)
0, NULL, &ev);
if (BONOBO_EX (&ev)) {
- e_error_run (NULL, "editor-error", bonobo_exception_get_text (&ev));
+ e_error_run (NULL, "editor-error", bonobo_exception_get_text (&ev), NULL);
CORBA_exception_free (&ev);
return;
}
@@ -947,7 +947,7 @@ edit_component (ECal *client, ECalComponent *comp)
GNOME_Evolution_Calendar_CompEditorFactory_editExisting (factory, uri, (char *) uid, corba_type, &ev);
if (BONOBO_EX (&ev))
- e_error_run (NULL, "editor-error", bonobo_exception_get_text (&ev));
+ e_error_run (NULL, "editor-error", bonobo_exception_get_text (&ev), NULL);
CORBA_exception_free (&ev);
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c
index 5ba3b11e96..080858c448 100644
--- a/calendar/gui/calendar-component.c
+++ b/calendar/gui/calendar-component.c
@@ -568,7 +568,7 @@ delete_calendar_cb (EPopup *ep, EPopupItem *pitem, void *data)
return;
if (e_error_run((GtkWindow *)gtk_widget_get_toplevel(ep->target->widget),
- "calendar:prompt-delete-calendar", e_source_peek_name(selected_source)) != GTK_RESPONSE_YES)
+ "calendar:prompt-delete-calendar", e_source_peek_name(selected_source), NULL) != GTK_RESPONSE_YES)
return;
/* first, ask the backend to remove the calendar */
diff --git a/calendar/gui/memos-component.c b/calendar/gui/memos-component.c
index adf54c5c2d..cee6031404 100644
--- a/calendar/gui/memos-component.c
+++ b/calendar/gui/memos-component.c
@@ -415,7 +415,7 @@ delete_memo_list_cb (EPopup *ep, EPopupItem *pitem, void *data)
return;
if (e_error_run((GtkWindow *)gtk_widget_get_toplevel(ep->target->widget),
- "calendar:prompt-delete-memo-list", e_source_peek_name(selected_source)) != GTK_RESPONSE_YES)
+ "calendar:prompt-delete-memo-list", e_source_peek_name(selected_source), NULL) != GTK_RESPONSE_YES)
return;
/* first, ask the backend to remove the memo list */
diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c
index ac272c83d1..03bc48db2e 100644
--- a/calendar/gui/tasks-component.c
+++ b/calendar/gui/tasks-component.c
@@ -406,7 +406,7 @@ delete_task_list_cb (EPopup *ep, EPopupItem *pitem, void *data)
return;
if (e_error_run((GtkWindow *)gtk_widget_get_toplevel(ep->target->widget),
- "calendar:prompt-delete-task-list", e_source_peek_name(selected_source)) != GTK_RESPONSE_YES)
+ "calendar:prompt-delete-task-list", e_source_peek_name(selected_source), NULL) != GTK_RESPONSE_YES)
return;
/* first, ask the backend to remove the task list */