diff options
author | Federico Mena Quintero <federico@ximian.com> | 2002-11-14 04:03:27 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2002-11-14 04:03:27 +0800 |
commit | 422f99755f1f214a44dc66791007ce516594c237 (patch) | |
tree | de8e4a486af16127ff02c4c08709763a0a5a4bf8 /calendar/cal-client/cal-query.c | |
parent | 777954dd8ae728870eb9881da9b6de9739b9155f (diff) | |
download | gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.gz gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.bz2 gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.lz gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.xz gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.tar.zst gsoc2013-evolution-422f99755f1f214a44dc66791007ce516594c237.zip |
#include <string.h> (obj_removed_cb): Fixed prototype.
2002-11-13 Federico Mena Quintero <federico@ximian.com>
* cal-client/cal-query.c: #include <string.h>
(obj_removed_cb): Fixed prototype.
* cal-client/cal-client.c (get_objects_atomically): Fix use of
g_signal_handler_disconnect().
* cal-client/client-test.c (create_client): Add G_CALLBACK casts.
svn path=/trunk/; revision=18744
Diffstat (limited to 'calendar/cal-client/cal-query.c')
-rw-r--r-- | calendar/cal-client/cal-query.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/cal-client/cal-query.c b/calendar/cal-client/cal-query.c index 7f29952f04..52fba27ef3 100644 --- a/calendar/cal-client/cal-query.c +++ b/calendar/cal-client/cal-query.c @@ -22,6 +22,7 @@ #include <config.h> #endif +#include <string.h> #include <bonobo/bonobo-exception.h> #include "cal-util/cal-util-marshal.h" #include "cal-query.h" @@ -225,7 +226,7 @@ obj_updated_cb (QueryListener *ql, /* Callback used when an object is removed from the query */ static void obj_removed_cb (QueryListener *ql, - const GNOME_Evolution_Calendar_CalObjUID uid, + const CORBA_char *uid, gpointer data) { CalQuery *query; |