[gegl] From: Andoni Morales Alastruey <ylatuya gmail com> Date: Fri, 18 Nov 2011 21:29:57 +0100 Subject: [P
- From: Ãyvind KolÃs <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] From: Andoni Morales Alastruey <ylatuya gmail com> Date: Fri, 18 Nov 2011 21:29:57 +0100 Subject: [P
- Date: Sat, 28 Jan 2012 11:58:53 +0000 (UTC)
commit 069ad430bd06f6013a7f029ec3ed15b4936870a6
Author: Ãyvind KolÃs <pippin gimp org>
Date: Sat Jan 28 11:55:43 2012 +0000
From: Andoni Morales Alastruey <ylatuya gmail com>
Date: Fri, 18 Nov 2011 21:29:57 +0100
Subject: [PATCH] Initializa cairo renderer with the proper presentation file
path
bin/gegl-options.c | 2 +-
gegl/gegl-xml.c | 2 +-
gegl/graph/gegl-node.c | 2 +-
gegl/operation/gegl-operation-composer.c | 2 +-
gegl/operation/gegl-operation-composer3.c | 2 +-
gegl/operation/gegl-operation-filter.c | 2 +-
gegl/operation/gegl-operation-source.c | 2 +-
operations/common/fattal02.c | 2 +-
operations/core/convert-format.c | 2 +-
9 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/bin/gegl-options.c b/bin/gegl-options.c
index e2d1d4f..dbc7892 100644
--- a/bin/gegl-options.c
+++ b/bin/gegl-options.c
@@ -240,7 +240,7 @@ parse_args (int argc,
}
else if (*curr[0]=='-') {
- fprintf (stderr, "\n\nunknown paramter '%s' giving you help instead\n\n\n", *curr);
+ fprintf (stderr, "\n\nunknown parameter '%s' giving you help instead\n\n\n", *curr);
usage (argv[0]);
}
diff --git a/gegl/gegl-xml.c b/gegl/gegl-xml.c
index 6dd2f89..10cf408 100644
--- a/gegl/gegl-xml.c
+++ b/gegl/gegl-xml.c
@@ -150,7 +150,7 @@ set_clone_prop_as_well:
}
else
{
- g_warning ("Unable to obtain absolute path for paramater %s\n",
+ g_warning ("Unable to obtain absolute path for parameter %s\n",
param_name);
}
}
diff --git a/gegl/graph/gegl-node.c b/gegl/graph/gegl-node.c
index 01bc2b2..258b8b7 100644
--- a/gegl/graph/gegl-node.c
+++ b/gegl/graph/gegl-node.c
@@ -609,7 +609,7 @@ gegl_node_connect_from (GeglNode *sink,
real_source = gegl_node_get_output_proxy (source, source_pad_name);
/* The name of the output pad of proxynop output nodes is always
- * "ouput"
+ * "output"
*/
real_source_pad_name = "output";
}
diff --git a/gegl/operation/gegl-operation-composer.c b/gegl/operation/gegl-operation-composer.c
index c98281a..708a188 100644
--- a/gegl/operation/gegl-operation-composer.c
+++ b/gegl/operation/gegl-operation-composer.c
@@ -83,7 +83,7 @@ gegl_operation_composer_class_init (GeglOperationComposerClass * klass)
g_object_class_install_property (object_class, PROP_OUTPUT,
g_param_spec_object ("output",
"Output",
- "Ouput pad for generated image buffer.",
+ "Output pad for generated image buffer.",
GEGL_TYPE_BUFFER,
G_PARAM_READABLE |
GEGL_PARAM_PAD_OUTPUT));
diff --git a/gegl/operation/gegl-operation-composer3.c b/gegl/operation/gegl-operation-composer3.c
index 73bdf04..ac77094 100644
--- a/gegl/operation/gegl-operation-composer3.c
+++ b/gegl/operation/gegl-operation-composer3.c
@@ -85,7 +85,7 @@ gegl_operation_composer3_class_init (GeglOperationComposer3Class * klass)
g_object_class_install_property (object_class, PROP_OUTPUT,
g_param_spec_object ("output",
"Output",
- "Ouput pad for generated image buffer.",
+ "Output pad for generated image buffer.",
GEGL_TYPE_BUFFER,
G_PARAM_READABLE |
GEGL_PARAM_PAD_OUTPUT));
diff --git a/gegl/operation/gegl-operation-filter.c b/gegl/operation/gegl-operation-filter.c
index 978977c..b56d3c0 100644
--- a/gegl/operation/gegl-operation-filter.c
+++ b/gegl/operation/gegl-operation-filter.c
@@ -86,7 +86,7 @@ gegl_operation_filter_class_init (GeglOperationFilterClass * klass)
g_object_class_install_property (object_class, PROP_OUTPUT,
g_param_spec_object ("output",
"Output",
- "Ouput pad for generated image buffer.",
+ "Output pad for generated image buffer.",
GEGL_TYPE_BUFFER,
G_PARAM_READABLE |
GEGL_PARAM_PAD_OUTPUT));
diff --git a/gegl/operation/gegl-operation-source.c b/gegl/operation/gegl-operation-source.c
index 5749a43..8a2332f 100644
--- a/gegl/operation/gegl-operation-source.c
+++ b/gegl/operation/gegl-operation-source.c
@@ -81,7 +81,7 @@ gegl_operation_source_class_init (GeglOperationSourceClass * klass)
g_object_class_install_property (gobject_class, PROP_OUTPUT,
g_param_spec_object ("output",
"Output",
- "Ouput pad for generated image buffer.",
+ "Output pad for generated image buffer.",
GEGL_TYPE_BUFFER,
G_PARAM_READABLE |
GEGL_PARAM_PAD_OUTPUT));
diff --git a/operations/common/fattal02.c b/operations/common/fattal02.c
index bc9bbde..abf172b 100644
--- a/operations/common/fattal02.c
+++ b/operations/common/fattal02.c
@@ -773,7 +773,7 @@ fattal02_downsample (const gfloat *input,
/* Blur the input buffer with a one pixel radius. Output should be
* preallocated with the same size as the input buffer. This must perform
- * correctly when input and ouput alias.
+ * correctly when input and output alias.
*/
static void
fattal02_gaussian_blur (const gfloat *input,
diff --git a/operations/core/convert-format.c b/operations/core/convert-format.c
index f8853e6..dd9e3d2 100644
--- a/operations/core/convert-format.c
+++ b/operations/core/convert-format.c
@@ -26,7 +26,7 @@
#ifdef GEGL_CHANT_PROPERTIES
gegl_chant_string(format, _("Output format"), "RGBA float",
- _("Babl ouput format string"))
+ _("Babl output format string"))
#else
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]