summaryrefslogtreecommitdiff
path: root/operations
diff options
context:
space:
mode:
authorJehan <jehan@girinstud.io>2014-08-01 18:45:34 +0000
committerOyvind Kolas <pippin@gimp.org>2015-05-23 13:19:24 +0200
commit48a1a1fe227991bf5a66990f65af08f01d138fb6 (patch)
tree51014cd1f9fb88971dd3c732a10475e683905c0d /operations
parent41f32fdccd63d0d445e7dce8c79d7cd8b93cf6a6 (diff)
operations: improve descriptions of gegl:buffer-sink and gegl:write-buffer.
It was not clear what was different from the descriptions. Worse, gegl:buffer-sink's description was misleading by writing that the buffer property was "an already existing GEGL buffer", whereas a new buffer was in fact allocated.
Diffstat (limited to 'operations')
-rw-r--r--operations/common/buffer-sink.c2
-rw-r--r--operations/common/write-buffer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/operations/common/buffer-sink.c b/operations/common/buffer-sink.c
index fdeaa4a4..a0e9f6f4 100644
--- a/operations/common/buffer-sink.c
+++ b/operations/common/buffer-sink.c
@@ -81,7 +81,7 @@ gegl_op_class_init (GeglOpClass *klass)
"name", "gegl:buffer-sink",
"title", _("Buffer Sink"),
"categories", "programming:output",
- "description", _("Write the resulting rendering to an already existing GEGL buffer."),
+ "description", _("Create a new GEGL buffer to write the resulting rendering."),
NULL);
}
diff --git a/operations/common/write-buffer.c b/operations/common/write-buffer.c
index c9247345..b4ffc553 100644
--- a/operations/common/write-buffer.c
+++ b/operations/common/write-buffer.c
@@ -146,7 +146,7 @@ gegl_op_class_init (GeglOpClass *klass)
"name", "gegl:write-buffer",
"title", _("Write Buffer"),
"categories" , "programming:output",
- "description", _("A GEGL buffer destination surface."),
+ "description", _("Write input data into an existing GEGL buffer destination surface."),
NULL);
}