Exemple #1
0
static void
arv_gc_enumeration_set_str_value (ArvGcString *gc_string, const char *value, GError **error)
{
	ArvGcEnumeration *gc_enumeration = ARV_GC_ENUMERATION (gc_string);

	arv_gc_enumeration_set_string_value (gc_enumeration, value, error);
}
Exemple #2
0
static void
arv_gc_enumeration_set_value_from_string (ArvGcFeatureNode *node, const char *string, GError **error)
{
	GError *local_error = NULL;

	arv_gc_enumeration_set_string_value (ARV_GC_ENUMERATION (node), string, &local_error);

	if (local_error != NULL)
		g_propagate_error (error, local_error);
}
Exemple #3
0
static void
arv_gc_enumeration_set_value_from_string (ArvGcFeatureNode *node, const char *string)
{
	arv_gc_enumeration_set_string_value (ARV_GC_ENUMERATION (node), string);
}