diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-07-04 10:57:51 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-07-04 10:57:51 +0800 |
commit | aca14308650918dcc599eee6b560406089aa9345 (patch) | |
tree | db05975afd56373ad4d9f6869eb1a30802093f69 /calendar/gui | |
parent | 9bc397a131c3392e6005ba344e64111d7fd8c683 (diff) | |
download | gsoc2013-evolution-aca14308650918dcc599eee6b560406089aa9345.tar gsoc2013-evolution-aca14308650918dcc599eee6b560406089aa9345.tar.gz gsoc2013-evolution-aca14308650918dcc599eee6b560406089aa9345.tar.bz2 gsoc2013-evolution-aca14308650918dcc599eee6b560406089aa9345.tar.lz gsoc2013-evolution-aca14308650918dcc599eee6b560406089aa9345.tar.xz gsoc2013-evolution-aca14308650918dcc599eee6b560406089aa9345.tar.zst gsoc2013-evolution-aca14308650918dcc599eee6b560406089aa9345.zip |
Use &obj instead of &ico in the call to cal_client_get_object(). The ToDo
2000-07-04 Damon Chaplin <damon@helixcode.com>
* 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
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/event-editor-dialog.glade | 1 | ||||
-rw-r--r-- | calendar/gui/gncal-todo.c | 3 |
2 files changed, 3 insertions, 1 deletions
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 @@ <widget> <class>GnomeApp</class> <name>event-editor-dialog</name> + <visible>False</visible> <title>event-editor-dialog</title> <type>GTK_WINDOW_TOPLEVEL</type> <position>GTK_WIN_POS_NONE</position> 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); |