Implement

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

	* location.c (location_get_config_log): Implement
This commit is contained in:
Bradford Hovinen 2001-07-31 14:39:32 +00:00 committed by Bradford Hovinen (Gdict maintainer)
parent e31a59e98a
commit 7a711c8ba9
3 changed files with 19 additions and 0 deletions

View file

@ -1265,6 +1265,21 @@ location_does_backend_change (Location *location, Location *location1,
return ret;
}
/* location_get_config_log:
* @location:
*
* Returns the config log object for this location
*/
ConfigLog *
location_get_config_log (Location *location)
{
g_return_val_if_fail (location != NULL, FALSE);
g_return_val_if_fail (IS_LOCATION (location), FALSE);
return location->p->config_log;
}
static gint
get_backends_cb (BackendList *backend_list, gchar *backend_id,
Location *location)