gimp r24749 - in trunk: . app/gegl
- From: ok svn gnome org
- To: svn-commits-list gnome org
- Subject: gimp r24749 - in trunk: . app/gegl
- Date: Wed, 30 Jan 2008 17:17:27 +0000 (GMT)
Author: ok
Date: Wed Jan 30 17:17:27 2008
New Revision: 24749
URL: http://svn.gnome.org/viewvc/gimp?rev=24749&view=rev
Log:
* app/gegl/gimpoperationcolorbalance.c:
* app/gegl/gimpoperationcolorize.c:
* app/gegl/gimpoperationcurves.c:
* app/gegl/gimpoperationdesaturate.c: stop using
gegl_operation_class_set_name() for gimp gegl-ops before #warning in
build.
Modified:
trunk/ChangeLog
trunk/app/gegl/gimpoperationcolorbalance.c
trunk/app/gegl/gimpoperationcolorize.c
trunk/app/gegl/gimpoperationcurves.c
trunk/app/gegl/gimpoperationdesaturate.c
Modified: trunk/app/gegl/gimpoperationcolorbalance.c
==============================================================================
--- trunk/app/gegl/gimpoperationcolorbalance.c (original)
+++ trunk/app/gegl/gimpoperationcolorbalance.c Wed Jan 30 17:17:27 2008
@@ -56,7 +56,7 @@
point_class->process = gimp_operation_color_balance_process;
- gegl_operation_class_set_name (operation_class, "gimp-color-balance");
+ operation_class->name = "gimp-color-balance";
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
Modified: trunk/app/gegl/gimpoperationcolorize.c
==============================================================================
--- trunk/app/gegl/gimpoperationcolorize.c (original)
+++ trunk/app/gegl/gimpoperationcolorize.c Wed Jan 30 17:17:27 2008
@@ -55,7 +55,7 @@
point_class->process = gimp_operation_colorize_process;
- gegl_operation_class_set_name (operation_class, "gimp-colorize");
+ operation_class->name = "gimp-colorize";
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
Modified: trunk/app/gegl/gimpoperationcurves.c
==============================================================================
--- trunk/app/gegl/gimpoperationcurves.c (original)
+++ trunk/app/gegl/gimpoperationcurves.c Wed Jan 30 17:17:27 2008
@@ -56,7 +56,7 @@
point_class->process = gimp_operation_curves_process;
- gegl_operation_class_set_name (operation_class, "gimp-curves");
+ operation_class->name = "gimp-curves";
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
Modified: trunk/app/gegl/gimpoperationdesaturate.c
==============================================================================
--- trunk/app/gegl/gimpoperationdesaturate.c (original)
+++ trunk/app/gegl/gimpoperationdesaturate.c Wed Jan 30 17:17:27 2008
@@ -70,7 +70,7 @@
point_class->process = gimp_operation_desaturate_process;
- gegl_operation_class_set_name (operation_class, "gimp-desaturate");
+ operation_class->name = "gimp-desaturate";
g_object_class_install_property (object_class,
PROP_MODE,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]