ECalConfig *
e_cal_config_new (int type, const char *menuid)
{
	ECalConfig *ecp = g_object_new (e_cal_config_get_type(), 0);
	e_config_construct (&ecp->config, type, menuid);
	return ecp;
}
Exemple #2
0
EMConfig *em_config_new(int type, const char *menuid)
{
	EMConfig *emp = g_object_new(em_config_get_type(), NULL);

	e_config_construct(&emp->config, type, menuid);

	return emp;
}