From c7b2533fefbc21ca6eee65b3c2bf8676c4677474 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 9 Aug 2000 05:47:32 +0000 Subject: Fixed some warnings. 2000-08-09 Christopher James Lahey * cal-client/cal-client.c, gui/e-calendar-table.c, pcs/cal.c: Fixed some warnings. svn path=/trunk/; revision=4637 --- calendar/pcs/cal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'calendar/pcs') diff --git a/calendar/pcs/cal.c b/calendar/pcs/cal.c index 5610267b9a..fdb7682e7c 100644 --- a/calendar/pcs/cal.c +++ b/calendar/pcs/cal.c @@ -720,7 +720,7 @@ cal_notify_update (Cal *cal, const char *uid) g_return_if_fail (priv->listener != CORBA_OBJECT_NIL); CORBA_exception_init (&ev); - Evolution_Calendar_Listener_obj_updated (priv->listener, uid, &ev); + Evolution_Calendar_Listener_obj_updated (priv->listener, (char *) uid, &ev); if (ev._major != CORBA_NO_EXCEPTION) g_message ("cal_notify_update(): could not notify the listener " @@ -751,7 +751,7 @@ cal_notify_remove (Cal *cal, const char *uid) g_return_if_fail (priv->listener != CORBA_OBJECT_NIL); CORBA_exception_init (&ev); - Evolution_Calendar_Listener_obj_removed (priv->listener, uid, &ev); + Evolution_Calendar_Listener_obj_removed (priv->listener, (char *) uid, &ev); if (ev._major != CORBA_NO_EXCEPTION) g_message ("cal_notify_remove(): could not notify the listener " -- cgit v1.2.3