diff options
author | Tim Janik <timj@gtk.org> | 2001-11-13 21:49:13 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2001-11-13 21:49:13 +0000 |
commit | d33e3d5331be3894934e7cb762cbbf8beff4e1c4 (patch) | |
tree | ca603f969038a4dc38fb19593692f57ab12efb6c /gobject/gparam.h | |
parent | ac0b13e47f247e48e36166a714a45447d4b93ccf (diff) | |
download | glib-d33e3d5331be3894934e7cb762cbbf8beff4e1c4.tar.gz |
API cleanups. remove g_type_check_flags(), provide g_type_test_flags() as
Tue Nov 13 22:16:41 2001 Tim Janik <timj@gtk.org>
* gtype.[hc]: API cleanups.
remove g_type_check_flags(), provide g_type_test_flags() as
a *private* function.
s/g_type_check_is_a/g_type_check_class_is_a/, private function.
s/g_type_instance_is_a/g_type_check_instance_is_a/, also private.
Diffstat (limited to 'gobject/gparam.h')
-rw-r--r-- | gobject/gparam.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject/gparam.h b/gobject/gparam.h index 02784afae..4ac8286e5 100644 --- a/gobject/gparam.h +++ b/gobject/gparam.h @@ -124,7 +124,7 @@ gboolean g_param_value_defaults (GParamSpec *pspec, GValue *value); gboolean g_param_value_validate (GParamSpec *pspec, GValue *value); -gboolean g_param_value_convert (GParamSpec *dest_value_spec, +gboolean g_param_value_convert (GParamSpec *pspec, const GValue *src_value, GValue *dest_value, gboolean strict_validation); |