summaryrefslogtreecommitdiff
path: root/gobject/gparamspecs.h
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>2001-11-14 03:02:22 +0000
committerTim Janik <timj@src.gnome.org>2001-11-14 03:02:22 +0000
commit35bf561f5fb29e5053077986b4a7c3b00ea9b4b9 (patch)
tree3add72388d8f19bd5548cc1226ef6e8d2704e972 /gobject/gparamspecs.h
parente5c99d932f79b11f35f0d604ef4ad8b4e4d0a7ba (diff)
downloadglib-35bf561f5fb29e5053077986b4a7c3b00ea9b4b9.tar.gz
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.
Diffstat (limited to 'gobject/gparamspecs.h')
-rw-r--r--gobject/gparamspecs.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/gobject/gparamspecs.h b/gobject/gparamspecs.h
index 972d918a9..98a15f678 100644
--- a/gobject/gparamspecs.h
+++ b/gobject/gparamspecs.h
@@ -68,8 +68,6 @@ G_BEGIN_DECLS
#define G_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_POINTER, GParamSpecPointer))
#define G_IS_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_VALUE_ARRAY))
#define G_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_VALUE_ARRAY, GParamSpecValueArray))
-#define G_IS_PARAM_SPEC_CLOSURE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_CLOSURE))
-#define G_PARAM_SPEC_CLOSURE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_CLOSURE, GParamSpecClosure))
#define G_IS_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OBJECT))
#define G_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OBJECT, GParamSpecObject))
@@ -94,7 +92,6 @@ typedef struct _GParamSpecParam GParamSpecParam;
typedef struct _GParamSpecBoxed GParamSpecBoxed;
typedef struct _GParamSpecPointer GParamSpecPointer;
typedef struct _GParamSpecValueArray GParamSpecValueArray;
-typedef struct _GParamSpecClosure GParamSpecClosure;
typedef struct _GParamSpecObject GParamSpecObject;
struct _GParamSpecChar
@@ -234,10 +231,6 @@ struct _GParamSpecValueArray
GParamSpec *element_spec;
guint fixed_n_elements;
};
-struct _GParamSpecClosure
-{
- GParamSpec parent_instance;
-};
struct _GParamSpecObject
{
GParamSpec parent_instance;
@@ -360,10 +353,6 @@ GParamSpec* g_param_spec_value_array (const gchar *name,
const gchar *blurb,
GParamSpec *element_spec,
GParamFlags flags);
-GParamSpec* g_param_spec_closure (const gchar *name,
- const gchar *nick,
- const gchar *blurb,
- GParamFlags flags);
GParamSpec* g_param_spec_object (const gchar *name,
const gchar *nick,
const gchar *blurb,