gimp r24750 - in trunk: . app/gegl
- From: ok svn gnome org
- To: svn-commits-list gnome org
- Subject: gimp r24750 - in trunk: . app/gegl
- Date: Wed, 30 Jan 2008 17:44:07 +0000 (GMT)
Author: ok
Date: Wed Jan 30 17:44:06 2008
New Revision: 24750
URL: http://svn.gnome.org/viewvc/gimp?rev=24750&view=rev
Log:
* app/gegl/gimpoperationcolorbalance.c:
* app/gegl/gimpoperationcolorize.c:
* app/gegl/gimpoperationcurves.c:
* app/gegl/gimpoperationdesaturate.c:
* app/gegl/gimpoperationhuesaturation.c:
* app/gegl/gimpoperationlevels.c:
* app/gegl/gimpoperationposterize.c:
* app/gegl/gimpoperationthreshold.c:
* app/gegl/gimpoperationtilesink.c:
* app/gegl/gimpoperationtilesource.c:
* app/gegl/gimpoperationdesaturate.c: stop using
gegl_operation_class_set_name() for gimp gegl ops.
Modified:
trunk/ChangeLog
trunk/app/gegl/gimpoperationcolorbalance.c
trunk/app/gegl/gimpoperationcolorize.c
trunk/app/gegl/gimpoperationcurves.c
trunk/app/gegl/gimpoperationdesaturate.c
trunk/app/gegl/gimpoperationhuesaturation.c
trunk/app/gegl/gimpoperationlevels.c
trunk/app/gegl/gimpoperationposterize.c
trunk/app/gegl/gimpoperationthreshold.c
trunk/app/gegl/gimpoperationtilesink.c
trunk/app/gegl/gimpoperationtilesource.c
Modified: trunk/app/gegl/gimpoperationcolorbalance.c
==============================================================================
--- trunk/app/gegl/gimpoperationcolorbalance.c (original)
+++ trunk/app/gegl/gimpoperationcolorbalance.c Wed Jan 30 17:44:06 2008
@@ -54,10 +54,10 @@
object_class->set_property = gimp_operation_point_filter_set_property;
object_class->get_property = gimp_operation_point_filter_get_property;
- point_class->process = gimp_operation_color_balance_process;
-
operation_class->name = "gimp-color-balance";
+ point_class->process = gimp_operation_color_balance_process;
+
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
g_param_spec_object ("config",
Modified: trunk/app/gegl/gimpoperationcolorize.c
==============================================================================
--- trunk/app/gegl/gimpoperationcolorize.c (original)
+++ trunk/app/gegl/gimpoperationcolorize.c Wed Jan 30 17:44:06 2008
@@ -53,10 +53,10 @@
object_class->set_property = gimp_operation_point_filter_set_property;
object_class->get_property = gimp_operation_point_filter_get_property;
- point_class->process = gimp_operation_colorize_process;
-
operation_class->name = "gimp-colorize";
+ point_class->process = gimp_operation_colorize_process;
+
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
g_param_spec_object ("config",
Modified: trunk/app/gegl/gimpoperationcurves.c
==============================================================================
--- trunk/app/gegl/gimpoperationcurves.c (original)
+++ trunk/app/gegl/gimpoperationcurves.c Wed Jan 30 17:44:06 2008
@@ -54,10 +54,10 @@
object_class->set_property = gimp_operation_point_filter_set_property;
object_class->get_property = gimp_operation_point_filter_get_property;
- point_class->process = gimp_operation_curves_process;
-
operation_class->name = "gimp-curves";
+ point_class->process = gimp_operation_curves_process;
+
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
g_param_spec_object ("config",
Modified: trunk/app/gegl/gimpoperationdesaturate.c
==============================================================================
--- trunk/app/gegl/gimpoperationdesaturate.c (original)
+++ trunk/app/gegl/gimpoperationdesaturate.c Wed Jan 30 17:44:06 2008
@@ -68,10 +68,10 @@
object_class->set_property = gimp_operation_desaturate_set_property;
object_class->get_property = gimp_operation_desaturate_get_property;
- point_class->process = gimp_operation_desaturate_process;
-
operation_class->name = "gimp-desaturate";
+ point_class->process = gimp_operation_desaturate_process;
+
g_object_class_install_property (object_class,
PROP_MODE,
g_param_spec_enum ("mode",
Modified: trunk/app/gegl/gimpoperationhuesaturation.c
==============================================================================
--- trunk/app/gegl/gimpoperationhuesaturation.c (original)
+++ trunk/app/gegl/gimpoperationhuesaturation.c Wed Jan 30 17:44:06 2008
@@ -54,9 +54,9 @@
object_class->set_property = gimp_operation_point_filter_set_property;
object_class->get_property = gimp_operation_point_filter_get_property;
- point_class->process = gimp_operation_hue_saturation_process;
+ operation_class->name = "gimp-hue-saturation";
- gegl_operation_class_set_name (operation_class, "gimp-hue-saturation");
+ point_class->process = gimp_operation_hue_saturation_process;
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
Modified: trunk/app/gegl/gimpoperationlevels.c
==============================================================================
--- trunk/app/gegl/gimpoperationlevels.c (original)
+++ trunk/app/gegl/gimpoperationlevels.c Wed Jan 30 17:44:06 2008
@@ -54,9 +54,9 @@
object_class->set_property = gimp_operation_point_filter_set_property;
object_class->get_property = gimp_operation_point_filter_get_property;
- point_class->process = gimp_operation_levels_process;
+ operation_class->name = "gimp-levels";
- gegl_operation_class_set_name (operation_class, "gimp-levels");
+ point_class->process = gimp_operation_levels_process;
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
Modified: trunk/app/gegl/gimpoperationposterize.c
==============================================================================
--- trunk/app/gegl/gimpoperationposterize.c (original)
+++ trunk/app/gegl/gimpoperationposterize.c Wed Jan 30 17:44:06 2008
@@ -54,9 +54,9 @@
object_class->set_property = gimp_operation_point_filter_set_property;
object_class->get_property = gimp_operation_point_filter_get_property;
- point_class->process = gimp_operation_posterize_process;
+ operation_class->name = "gimp-posterize";
- gegl_operation_class_set_name (operation_class, "gimp-posterize");
+ point_class->process = gimp_operation_posterize_process;
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
Modified: trunk/app/gegl/gimpoperationthreshold.c
==============================================================================
--- trunk/app/gegl/gimpoperationthreshold.c (original)
+++ trunk/app/gegl/gimpoperationthreshold.c Wed Jan 30 17:44:06 2008
@@ -53,9 +53,9 @@
object_class->set_property = gimp_operation_point_filter_set_property;
object_class->get_property = gimp_operation_point_filter_get_property;
- point_class->process = gimp_operation_threshold_process;
+ operation_class->name = "gimp-threshold";
- gegl_operation_class_set_name (operation_class, "gimp-threshold");
+ point_class->process = gimp_operation_threshold_process;
g_object_class_install_property (object_class,
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
Modified: trunk/app/gegl/gimpoperationtilesink.c
==============================================================================
--- trunk/app/gegl/gimpoperationtilesink.c (original)
+++ trunk/app/gegl/gimpoperationtilesink.c Wed Jan 30 17:44:06 2008
@@ -94,10 +94,11 @@
object_class->set_property = gimp_operation_tile_sink_set_property;
object_class->get_property = gimp_operation_tile_sink_get_property;
+ operation_class->name = "gimp-tilemanager-sink";
+
sink_class->process = gimp_operation_tile_sink_process;
sink_class->needs_full = FALSE;
- gegl_operation_class_set_name (operation_class, "gimp-tilemanager-sink");;
g_object_class_install_property (object_class, PROP_TILE_MANAGER,
g_param_spec_boxed ("tile-manager",
Modified: trunk/app/gegl/gimpoperationtilesource.c
==============================================================================
--- trunk/app/gegl/gimpoperationtilesource.c (original)
+++ trunk/app/gegl/gimpoperationtilesource.c Wed Jan 30 17:44:06 2008
@@ -79,6 +79,7 @@
object_class->set_property = gimp_operation_tile_source_set_property;
object_class->get_property = gimp_operation_tile_source_get_property;
+ operation_class->name = "gimp-tilemanager-source";
operation_class->prepare = gimp_operation_tile_source_prepare;
operation_class->get_defined_region = gimp_operation_tile_source_get_defined_region;
operation_class->adjust_result_region = NULL; /* the default source is
@@ -89,7 +90,6 @@
source_class->process = gimp_operation_tile_source_process;
- gegl_operation_class_set_name (operation_class, "gimp-tilemanager-source");;
g_object_class_install_property (object_class, PROP_TILE_MANAGER,
g_param_spec_boxed ("tile-manager",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]