diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-10 03:47:53 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-10 03:47:53 +0800 |
commit | 304e8a1ba0f0ed96c18889a4cc2a430bb7efd22e (patch) | |
tree | 3def1932e712455b2083eccd54568391377f11c7 | |
parent | 62ca9f5fd718312c9ce4af70c9ecd0f2ab2b5fcd (diff) | |
download | gsoc2013-evolution-304e8a1ba0f0ed96c18889a4cc2a430bb7efd22e.tar gsoc2013-evolution-304e8a1ba0f0ed96c18889a4cc2a430bb7efd22e.tar.gz gsoc2013-evolution-304e8a1ba0f0ed96c18889a4cc2a430bb7efd22e.tar.bz2 gsoc2013-evolution-304e8a1ba0f0ed96c18889a4cc2a430bb7efd22e.tar.lz gsoc2013-evolution-304e8a1ba0f0ed96c18889a4cc2a430bb7efd22e.tar.xz gsoc2013-evolution-304e8a1ba0f0ed96c18889a4cc2a430bb7efd22e.tar.zst gsoc2013-evolution-304e8a1ba0f0ed96c18889a4cc2a430bb7efd22e.zip |
Fixed a warning.
2000-08-09 Christopher James Lahey <clahey@helixcode.com>
* cal-client/cal-client.c: Fixed a warning.
svn path=/trunk/; revision=4659
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/cal-client/cal-client.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index d26b068db5..51565e559e 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,9 @@ 2000-08-09 Christopher James Lahey <clahey@helixcode.com> + * cal-client/cal-client.c: Fixed a warning. + +2000-08-09 Christopher James Lahey <clahey@helixcode.com> + * cal-client/cal-client.c, gui/e-calendar-table.c, pcs/cal.c: Fixed some warnings. diff --git a/calendar/cal-client/cal-client.c b/calendar/cal-client/cal-client.c index 7ef9e5db6a..6ac63978d6 100644 --- a/calendar/cal-client/cal-client.c +++ b/calendar/cal-client/cal-client.c @@ -792,6 +792,8 @@ cal_client_get_uids (CalClient *client, CalObjType type) return uids; } +/* FIXME: Not used? */ +#if 0 /* Builds a GList of CalObjInstance structures from the CORBA sequence */ static GList * build_object_instance_list (Evolution_Calendar_CalObjInstanceSeq *seq) @@ -819,6 +821,7 @@ build_object_instance_list (Evolution_Calendar_CalObjInstanceSeq *seq) list = g_list_reverse (list); return list; } +#endif /** * cal_client_get_objects_in_range: @@ -1067,7 +1070,7 @@ cal_client_update_object (CalClient *client, CalComponent *comp) cal_component_get_uid (comp, &uid); CORBA_exception_init (&ev); - Evolution_Calendar_Cal_update_object (priv->cal, uid, obj_string, &ev); + Evolution_Calendar_Cal_update_object (priv->cal, (char *) uid, obj_string, &ev); g_free (obj_string); if (ev._major == CORBA_USER_EXCEPTION && |