aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorDamon Chaplin <damon@helixcode.com>2000-07-04 10:57:51 +0800
committerDamon Chaplin <damon@src.gnome.org>2000-07-04 10:57:51 +0800
commitaca14308650918dcc599eee6b560406089aa9345 (patch)
treedb05975afd56373ad4d9f6869eb1a30802093f69 /calendar
parent9bc397a131c3392e6005ba344e64111d7fd8c683 (diff)
downloadgsoc2013-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')
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/gui/event-editor-dialog.glade1
-rw-r--r--calendar/gui/gncal-todo.c3
3 files changed, 11 insertions, 1 deletions
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 <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.
+
2000-07-03 Federico Mena Quintero <federico@helixcode.com>
* 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 @@
<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);