app: fix names of addition and subtract ops

This commit is contained in:
Øyvind Kolås 2017-01-10 02:29:34 +01:00
parent dfcb5c11de
commit 153796df9b
4 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@ gimp_operation_addition_legacy_class_init (GimpOperationAdditionLegacyClass *kla
point_class = GEGL_OPERATION_POINT_COMPOSER3_CLASS (klass);
gegl_operation_class_set_keys (operation_class,
"name", "gimp:addition-mode",
"name", "gimp:addition-legacy",
"description", "GIMP addition mode operation",
NULL);

View File

@ -52,7 +52,7 @@ gimp_operation_subtract_legacy_class_init (GimpOperationSubtractLegacyClass *kla
point_class = GEGL_OPERATION_POINT_COMPOSER3_CLASS (klass);
gegl_operation_class_set_keys (operation_class,
"name", "gimp:subtract-mode",
"name", "gimp:subtract-legacy",
"description", "GIMP subtract mode operation",
NULL);

View File

@ -53,7 +53,7 @@ gimp_operation_addition_class_init (GimpOperationAdditionClass *klass)
point_class = GEGL_OPERATION_POINT_COMPOSER3_CLASS (klass);
gegl_operation_class_set_keys (operation_class,
"name", "gimp:addition-mode",
"name", "gimp:addition",
"description", "GIMP addition mode operation",
NULL);

View File

@ -53,7 +53,7 @@ gimp_operation_subtract_class_init (GimpOperationSubtractClass *klass)
point_class = GEGL_OPERATION_POINT_COMPOSER3_CLASS (klass);
gegl_operation_class_set_keys (operation_class,
"name", "gimp:subtract-mode",
"name", "gimp:subtract",
"description", "GIMP subtract mode operation",
NULL);