[gimp] app: minor cleanup in gimpoperationblend.c
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: minor cleanup in gimpoperationblend.c
- Date: Mon, 29 Aug 2016 15:40:10 +0000 (UTC)
commit d0263efd805365c5f9575f4767714cf76dbfb6d7
Author: Michael Natterer <mitch gimp org>
Date: Mon Aug 29 17:38:06 2016 +0200
app: minor cleanup in gimpoperationblend.c
app/operations/gimpoperationblend.c | 24 +++++++++++++-----------
1 files changed, 13 insertions(+), 11 deletions(-)
---
diff --git a/app/operations/gimpoperationblend.c b/app/operations/gimpoperationblend.c
index 2fc7a42..4dc0eb0 100644
--- a/app/operations/gimpoperationblend.c
+++ b/app/operations/gimpoperationblend.c
@@ -31,13 +31,13 @@
#include "operations-types.h"
-#include "core/gimp.h"
#include "core/gimpgradient.h"
#include "gimpoperationblend.h"
#include "gimp-intl.h"
+
//#define USE_GRADIENT_CACHE 1
enum
@@ -90,15 +90,15 @@ typedef struct
/* local function prototypes */
-static void gimp_operation_blend_dispose (GObject *gobject);
+static void gimp_operation_blend_dispose (GObject *gobject);
static void gimp_operation_blend_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec);
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec);
static void gimp_operation_blend_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec);
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec);
static void gimp_operation_blend_prepare (GeglOperation *operation);
@@ -165,11 +165,13 @@ static gboolean gimp_operation_blend_process (GeglOperation *operation,
const GeglRectangle *result,
gint level);
+
G_DEFINE_TYPE (GimpOperationBlend, gimp_operation_blend,
GEGL_TYPE_OPERATION_FILTER)
#define parent_class gimp_operation_blend_parent_class
+
static void
gimp_operation_blend_class_init (GimpOperationBlendClass *klass)
{
@@ -177,9 +179,9 @@ gimp_operation_blend_class_init (GimpOperationBlendClass *klass)
GeglOperationClass *operation_class = GEGL_OPERATION_CLASS (klass);
GeglOperationFilterClass *filter_class = GEGL_OPERATION_FILTER_CLASS (klass);
- object_class->dispose = gimp_operation_blend_dispose;
- object_class->set_property = gimp_operation_blend_set_property;
- object_class->get_property = gimp_operation_blend_get_property;
+ object_class->dispose = gimp_operation_blend_dispose;
+ object_class->set_property = gimp_operation_blend_set_property;
+ object_class->get_property = gimp_operation_blend_get_property;
operation_class->prepare = gimp_operation_blend_prepare;
operation_class->get_bounding_box = gimp_operation_blend_get_bounding_box;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]