From aca14308650918dcc599eee6b560406089aa9345 Mon Sep 17 00:00:00 2001 From: Damon Chaplin Date: Tue, 4 Jul 2000 02:57:51 +0000 Subject: Use &obj instead of &ico in the call to cal_client_get_object(). The ToDo 2000-07-04 Damon Chaplin * gui/gncal-todo.c (gncal_todo_update): Use &obj instead of &ico in the call to cal_client_get_object(). The ToDo list should work now. * gui/event-editor-dialog.glade: set the toplevel GnomeApp to invisible so it doesn't appear and then resize. svn path=/trunk/; revision=3883 --- calendar/ChangeLog | 8 ++++++++ calendar/gui/event-editor-dialog.glade | 1 + calendar/gui/gncal-todo.c | 3 ++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 243e579602..9a4ab509ba 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2000-07-04 Damon Chaplin + + * gui/gncal-todo.c (gncal_todo_update): Use &obj instead of &ico in + the call to cal_client_get_object(). The ToDo list should work now. + + * gui/event-editor-dialog.glade: set the toplevel GnomeApp to invisible + so it doesn't appear and then resize. + 2000-07-03 Federico Mena Quintero * cal-util/cal-component.c (cal_component_get_summary): Use diff --git a/calendar/gui/event-editor-dialog.glade b/calendar/gui/event-editor-dialog.glade index 7573a94869..8e6b2f6e30 100644 --- a/calendar/gui/event-editor-dialog.glade +++ b/calendar/gui/event-editor-dialog.glade @@ -20,6 +20,7 @@ GnomeApp event-editor-dialog + False event-editor-dialog GTK_WINDOW_TOPLEVEL GTK_WIN_POS_NONE diff --git a/calendar/gui/gncal-todo.c b/calendar/gui/gncal-todo.c index fb662c4b3c..ad2c1f4068 100644 --- a/calendar/gui/gncal-todo.c +++ b/calendar/gui/gncal-todo.c @@ -869,7 +869,8 @@ gncal_todo_update (GncalTodo *todo, iCalObject *ico, int flags) char *uid = l->data; iCalObject *obj; - status = cal_client_get_object (todo->calendar->client, uid, &ico); + status = cal_client_get_object (todo->calendar->client, uid, + &obj); if (status == CAL_CLIENT_GET_SUCCESS) { insert_in_clist (todo, obj); -- cgit