app: s/trc/space/ in the property names too

This commit is contained in:
Michael Natterer
2017-01-22 17:14:44 +01:00
parent 2537d3d0e9
commit d3b8a0d007
2 changed files with 9 additions and 9 deletions

View File

@ -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);
} }

View File

@ -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,