summaryrefslogtreecommitdiff
path: root/gobject/gparam.h
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2000-07-19 16:02:43 +0000
committerTor Lillqvist <tml@src.gnome.org>2000-07-19 16:02:43 +0000
commit5e4c5611ab37edf414239eb44f9765c2b678e9c4 (patch)
tree144156ff9574faa3baf74589df00fb5163ba9c97 /gobject/gparam.h
parentcb931f4980afdbb8c052dfcecd4fcf0799036176 (diff)
downloadglib-5e4c5611ab37edf414239eb44f9765c2b678e9c4.tar.gz
gparam.h gvalue.h gparam.c Shut up Sun's picky compiler.
2000-07-19 Tor Lillqvist <tml@iki.fi> * gparam.h * gvalue.h * gparam.c * gtype.c: Shut up Sun's picky compiler.
Diffstat (limited to 'gobject/gparam.h')
-rw-r--r--gobject/gparam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject/gparam.h b/gobject/gparam.h
index 3551b15ff..370fb4ff9 100644
--- a/gobject/gparam.h
+++ b/gobject/gparam.h
@@ -37,7 +37,7 @@ extern "C" {
#define G_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM, GParamSpec))
#define G_IS_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM))
#define G_PARAM_SPEC_GET_CLASS(pspec) (G_TYPE_INSTANCE_GET_CLASS ((pspec), G_TYPE_PARAM, GParamSpecClass))
-#define G_IS_PARAM_VALUE(pspec, value) (g_type_is_a (G_VALUE_TYPE (value), G_PARAM_SPEC_VALUE_TYPE (pspec))) // FIXME
+#define G_IS_PARAM_VALUE(pspec, value) (g_type_is_a (G_VALUE_TYPE (value), G_PARAM_SPEC_VALUE_TYPE (pspec))) /* FIXME */
#define G_PARAM_SPEC_VALUE_TYPE(pspec) (G_PARAM_SPEC_GET_CLASS (pspec)->value_type)