[gegl] gegl-op: initialize default values for int/double
- From: Øyvind Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] gegl-op: initialize default values for int/double
- Date: Tue, 20 May 2014 12:51:37 +0000 (UTC)
commit 3a5303fe65ccb20f2f1e0becf44413733c1bc300
Author: Øyvind Kolås <pippin gimp org>
Date: Tue May 20 14:48:44 2014 +0200
gegl-op: initialize default values for int/double
gegl/gegl-op.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gegl/gegl-op.h b/gegl/gegl-op.h
index c68845c..3f43ea2 100644
--- a/gegl/gegl-op.h
+++ b/gegl/gegl-op.h
@@ -1034,7 +1034,7 @@ gegl_op_class_intern_init (gpointer klass)
#define property_double(name, label, def_val) \
REGISTER_IF_ANY \
}{ GParamSpec *pspec = \
- gegl_param_spec_double (#name, label, NULL,-G_MAXDOUBLE,G_MAXDOUBLE,0,-100,100,1.0,flags);\
+ gegl_param_spec_double (#name, label, NULL,-G_MAXDOUBLE,G_MAXDOUBLE,def_val,-100,100,1.0,flags);\
GeglParamSpecDouble *upspec G_GNUC_UNUSED = GEGL_PARAM_SPEC_DOUBLE (pspec);\
GParamSpecDouble *vpspec G_GNUC_UNUSED = G_PARAM_SPEC_DOUBLE (pspec);\
current_prop = PROP_##name ;
@@ -1042,7 +1042,7 @@ gegl_op_class_intern_init (gpointer klass)
#define property_int(name, label, def_val) \
REGISTER_IF_ANY \
}{ GParamSpec *pspec = \
- gegl_param_spec_int (#name, label, NULL,G_MININT,G_MAXINT,0,-100,100,1.0,flags);\
+ gegl_param_spec_int (#name, label, NULL,G_MININT,G_MAXINT,def_val,-100,100,1.0,flags);\
GeglParamSpecInt *upspec G_GNUC_UNUSED = GEGL_PARAM_SPEC_INT (pspec);\
GParamSpecInt *vpspec G_GNUC_UNUSED = G_PARAM_SPEC_INT (pspec);\
current_prop = PROP_##name ;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]