aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-client/query-listener.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2002-11-04 07:38:42 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2002-11-04 07:38:42 +0800
commite134fc8fe3d78dfc9340b513bc3bbb61631cece4 (patch)
tree3c46bf1ad1104a73f310e61f1fd1ba0eb6e41787 /calendar/cal-client/query-listener.c
parentf3608fedd844044cd739c11b7da9791d68372eb0 (diff)
downloadgsoc2013-evolution-e134fc8fe3d78dfc9340b513bc3bbb61631cece4.tar
gsoc2013-evolution-e134fc8fe3d78dfc9340b513bc3bbb61631cece4.tar.gz
gsoc2013-evolution-e134fc8fe3d78dfc9340b513bc3bbb61631cece4.tar.bz2
gsoc2013-evolution-e134fc8fe3d78dfc9340b513bc3bbb61631cece4.tar.lz
gsoc2013-evolution-e134fc8fe3d78dfc9340b513bc3bbb61631cece4.tar.xz
gsoc2013-evolution-e134fc8fe3d78dfc9340b513bc3bbb61631cece4.tar.zst
gsoc2013-evolution-e134fc8fe3d78dfc9340b513bc3bbb61631cece4.zip
use EConfigListener instead of BonoboConfig.
2002-11-03 Rodrigo Moya <rodrigo@ximian.com> * cal-client/cal-client.c (get_default_uri): use EConfigListener instead of BonoboConfig. * cal-client/cal-client.c: * cal-client/cal-listener.[ch]: * cal-client/query-listener.c: warning free. svn path=/trunk/; revision=18517
Diffstat (limited to 'calendar/cal-client/query-listener.c')
-rw-r--r--calendar/cal-client/query-listener.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/cal-client/query-listener.c b/calendar/cal-client/query-listener.c
index ab02f2faca..6f090717d7 100644
--- a/calendar/cal-client/query-listener.c
+++ b/calendar/cal-client/query-listener.c
@@ -47,14 +47,14 @@ static void query_listener_init (QueryListener *ql);
static void query_listener_destroy (GtkObject *object);
static void impl_notifyObjUpdated (PortableServer_Servant servant,
- GNOME_Evolution_Calendar_CalObjUIDSeq *uids,
+ const GNOME_Evolution_Calendar_CalObjUIDSeq *uids,
CORBA_boolean query_in_progress,
CORBA_long n_scanned,
CORBA_long total,
CORBA_Environment *ev);
static void impl_notifyObjRemoved (PortableServer_Servant servant,
- GNOME_Evolution_Calendar_CalObjUID uid,
+ const CORBA_char *uid,
CORBA_Environment *ev);
static void impl_notifyQueryDone (PortableServer_Servant servant,
@@ -146,7 +146,7 @@ query_listener_destroy (GtkObject *object)
/* ::notifyObjUpdated() method */
static void
impl_notifyObjUpdated (PortableServer_Servant servant,
- GNOME_Evolution_Calendar_CalObjUIDSeq *uids,
+ const GNOME_Evolution_Calendar_CalObjUIDSeq *uids,
CORBA_boolean query_in_progress,
CORBA_long n_scanned,
CORBA_long total,
@@ -168,7 +168,7 @@ impl_notifyObjUpdated (PortableServer_Servant servant,
/* ::notifyObjRemoved() method */
static void
impl_notifyObjRemoved (PortableServer_Servant servant,
- GNOME_Evolution_Calendar_CalObjUID uid,
+ const CORBA_char *uid,
CORBA_Environment *ev)
{
QueryListener *ql;