app: s/trc/space/ in the property names too
This commit is contained in:
@ -156,13 +156,13 @@ gimp_gegl_mode_node_set_mode (GeglNode *node,
|
|||||||
* all its properties
|
* all its properties
|
||||||
*/
|
*/
|
||||||
gegl_node_set (node,
|
gegl_node_set (node,
|
||||||
"operation", gimp_layer_mode_get_operation (mode),
|
"operation", gimp_layer_mode_get_operation (mode),
|
||||||
"layer-mode", mode,
|
"layer-mode", mode,
|
||||||
"opacity", opacity,
|
"opacity", opacity,
|
||||||
"linear", gimp_layer_mode_is_linear (mode),
|
"linear", gimp_layer_mode_is_linear (mode),
|
||||||
"blend-trc", gimp_layer_mode_get_blend_space (mode),
|
"blend-space", gimp_layer_mode_get_blend_space (mode),
|
||||||
"composite-trc", gimp_layer_mode_get_composite_space (mode),
|
"composite-space", gimp_layer_mode_get_composite_space (mode),
|
||||||
"composite-mode", gimp_layer_mode_get_composite_mode (mode),
|
"composite-mode", gimp_layer_mode_get_composite_mode (mode),
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ gimp_operation_layer_mode_class_init (GimpOperationLayerModeClass *klass)
|
|||||||
G_PARAM_CONSTRUCT));
|
G_PARAM_CONSTRUCT));
|
||||||
|
|
||||||
g_object_class_install_property (object_class, PROP_BLEND_SPACE,
|
g_object_class_install_property (object_class, PROP_BLEND_SPACE,
|
||||||
g_param_spec_enum ("blend-trc",
|
g_param_spec_enum ("blend-space",
|
||||||
NULL, NULL,
|
NULL, NULL,
|
||||||
GIMP_TYPE_LAYER_COLOR_SPACE,
|
GIMP_TYPE_LAYER_COLOR_SPACE,
|
||||||
GIMP_LAYER_COLOR_SPACE_RGB_LINEAR,
|
GIMP_LAYER_COLOR_SPACE_RGB_LINEAR,
|
||||||
@ -119,7 +119,7 @@ gimp_operation_layer_mode_class_init (GimpOperationLayerModeClass *klass)
|
|||||||
|
|
||||||
|
|
||||||
g_object_class_install_property (object_class, PROP_COMPOSITE_SPACE,
|
g_object_class_install_property (object_class, PROP_COMPOSITE_SPACE,
|
||||||
g_param_spec_enum ("composite-trc",
|
g_param_spec_enum ("composite-space",
|
||||||
NULL, NULL,
|
NULL, NULL,
|
||||||
GIMP_TYPE_LAYER_COLOR_SPACE,
|
GIMP_TYPE_LAYER_COLOR_SPACE,
|
||||||
GIMP_LAYER_COLOR_SPACE_RGB_LINEAR,
|
GIMP_LAYER_COLOR_SPACE_RGB_LINEAR,
|
||||||
|
Reference in New Issue
Block a user