gegl r2042 - in trunk: . operations/workshop
- From: ok svn gnome org
- To: svn-commits-list gnome org
- Subject: gegl r2042 - in trunk: . operations/workshop
- Date: Mon, 18 Feb 2008 17:15:39 +0000 (GMT)
Author: ok
Date: Mon Feb 18 17:15:39 2008
New Revision: 2042
URL: http://svn.gnome.org/viewvc/gegl?rev=2042&view=rev
Log:
* operations/workshop/grey.c: (operation_class_init): use
GeglOperationPointFilter not GeglOperationFilter as our superclass in
class_init.
Modified:
trunk/ChangeLog
trunk/operations/workshop/grey.c
Modified: trunk/operations/workshop/grey.c
==============================================================================
--- trunk/operations/workshop/grey.c (original)
+++ trunk/operations/workshop/grey.c Mon Feb 18 17:15:39 2008
@@ -47,13 +47,13 @@
static void
operation_class_init (GeglChantClass *klass)
{
- GeglOperationClass *operation_class;
- GeglOperationFilterClass *filter_class;
+ GeglOperationClass *operation_class;
+ GeglOperationPointFilterClass *point_filter_class;
operation_class = GEGL_OPERATION_CLASS (klass);
- filter_class = GEGL_OPERATION_FILTER_CLASS (klass);
+ point_filter_class = GEGL_OPERATION_POINT_FILTER_CLASS (klass);
- filter_class->process = process;
+ point_filter_class->process = process;
operation_class->prepare = prepare;
operation_class->name = "grey";
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]