mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-25 03:17:52 +02:00
add API for chaining: g_signal_chain_from_overridden() and
Tue Nov 13 23:18:10 2001 Tim Janik <timj@gtk.org> * gsignal.[hc]: add API for chaining: g_signal_chain_from_overridden() and g_signal_override_class_closure(), implementation yet to come. * gtype.[hc], Makefile.am: provide G_LOG_DOMAIN as compile flag. * gparam.[hc]: s/g_param_get/g_param_spec_get/ for get_nick, get_name and get_blurb, to be consistent with the rest of the g_param_spec_*() functions. * gparamspecs.[hc]: got rid of bogus GClosure paramspec. G_TYPE_CLOSURE is a boxed type already.
This commit is contained in:
@@ -235,7 +235,7 @@ g_param_spec_sink (GParamSpec *pspec)
|
||||
}
|
||||
|
||||
G_CONST_RETURN gchar*
|
||||
g_param_get_name (GParamSpec *pspec)
|
||||
g_param_spec_get_name (GParamSpec *pspec)
|
||||
{
|
||||
g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
|
||||
|
||||
@@ -243,7 +243,7 @@ g_param_get_name (GParamSpec *pspec)
|
||||
}
|
||||
|
||||
G_CONST_RETURN gchar*
|
||||
g_param_get_nick (GParamSpec *pspec)
|
||||
g_param_spec_get_nick (GParamSpec *pspec)
|
||||
{
|
||||
g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
|
||||
|
||||
@@ -251,7 +251,7 @@ g_param_get_nick (GParamSpec *pspec)
|
||||
}
|
||||
|
||||
G_CONST_RETURN gchar*
|
||||
g_param_get_blurb (GParamSpec *pspec)
|
||||
g_param_spec_get_blurb (GParamSpec *pspec)
|
||||
{
|
||||
g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), NULL);
|
||||
|
||||
|
Reference in New Issue
Block a user