Use correct pointer type when passing to notify_listeners

2001-07-24  Bradford Hovinen  <hovinen@ximian.com>

	* bonobo-config-archiver.c (real_sync): Use correct pointer
	type when passing to notify_listeners
This commit is contained in:
Bradford Hovinen 2001-07-24 23:20:53 +00:00 committed by Bradford Hovinen (Gdict maintainer)
parent 5352793786
commit 62137c9e23
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,7 @@
2001-07-24 Bradford Hovinen <hovinen@ximian.com> 2001-07-24 Bradford Hovinen <hovinen@ximian.com>
* bonobo-config-archiver.c (real_sync): Notify listeners with a sync event * bonobo-config-archiver.c (real_sync): Notify listeners with a sync event
(real_sync): Use correct pointer type when passing to notify_listeners
2001-07-20 Chema Celorio <chema@celorio.com> 2001-07-20 Chema Celorio <chema@celorio.com>

View file

@ -225,7 +225,7 @@ real_sync (BonoboConfigDatabase *db,
archiver_db->doc, STORE_MASK_PREVIOUS); archiver_db->doc, STORE_MASK_PREVIOUS);
arg = bonobo_arg_new (BONOBO_ARG_NULL); arg = bonobo_arg_new (BONOBO_ARG_NULL);
bonobo_event_source_notify_listeners (archiver_db->es, "Bonobo/ConfigDatabase:sync", arg, &ev); bonobo_event_source_notify_listeners (archiver_db->es, "Bonobo/ConfigDatabase:sync", arg, ev);
bonobo_arg_release (arg); bonobo_arg_release (arg);
} }