[gimp] plug-ins: clean out some lost tabs.



commit 8796220434a722c88f21036aa7a96a982239ec34
Author: Jehan <jehan girinstud io>
Date:   Fri Feb 16 19:12:19 2018 +0100

    plug-ins: clean out some lost tabs.

 plug-ins/common/emboss.c        |    2 +-
 plug-ins/common/file-cel.c      |    8 ++++----
 plug-ins/common/file-jp2-load.c |    3 ++-
 plug-ins/common/grid.c          |    2 +-
 plug-ins/common/newsprint.c     |    2 +-
 plug-ins/common/nl-filter.c     |    2 +-
 plug-ins/common/oilify.c        |    2 +-
 plug-ins/common/sparkle.c       |    4 ++--
 8 files changed, 13 insertions(+), 12 deletions(-)
---
diff --git a/plug-ins/common/emboss.c b/plug-ins/common/emboss.c
index 0df0136..51ec60e 100644
--- a/plug-ins/common/emboss.c
+++ b/plug-ins/common/emboss.c
@@ -355,7 +355,7 @@ emboss (GimpDrawable *drawable,
     {
       if (! gimp_drawable_mask_intersect (drawable->drawable_id,
                                           &x1, &y1, &width, &height))
-       return;
+        return;
 
       /* expand the bounds a little */
       x1 = MAX (0, x1 - evals.depth);
diff --git a/plug-ins/common/file-cel.c b/plug-ins/common/file-cel.c
index 401d3bf..d166202 100644
--- a/plug-ins/common/file-cel.c
+++ b/plug-ins/common/file-cel.c
@@ -256,10 +256,10 @@ run (const gchar      *name,
       if (save_image (g_file_new_for_uri (param[3].data.d_string),
                       image_ID, drawable_ID, &error))
         {
-         if (data_length)
-           {
-             gimp_set_data (SAVE_PROC, palette_file, data_length);
-           }
+          if (data_length)
+            {
+              gimp_set_data (SAVE_PROC, palette_file, data_length);
+            }
         }
       else
         {
diff --git a/plug-ins/common/file-jp2-load.c b/plug-ins/common/file-jp2-load.c
index 0de1905..1bc684b 100644
--- a/plug-ins/common/file-jp2-load.c
+++ b/plug-ins/common/file-jp2-load.c
@@ -307,7 +307,8 @@ load_image (const gchar  *filename,
       components[3] = jas_image_getcmptbytype (image, JAS_IMAGE_CT_OPACITY);
 
       /* ImageMagick seems to write out the 'matte' component type
-        (number 3) */
+       * (number 3)
+       */
       if (components[3] == -1)
         components[3] = jas_image_getcmptbytype (image, 3);
 
diff --git a/plug-ins/common/grid.c b/plug-ins/common/grid.c
index 1b935d4..8eb5930 100644
--- a/plug-ins/common/grid.c
+++ b/plug-ins/common/grid.c
@@ -397,7 +397,7 @@ grid (gint32        image_ID,
 
       if (! gimp_drawable_mask_intersect (drawable->drawable_id,
                                           &sx1, &sy1, &w, &h))
-       return;
+        return;
 
       sx2 = sx1 + w;
       sy2 = sy1 + h;
diff --git a/plug-ins/common/newsprint.c b/plug-ins/common/newsprint.c
index b53f7bd..bdb6b50 100644
--- a/plug-ins/common/newsprint.c
+++ b/plug-ins/common/newsprint.c
@@ -1805,7 +1805,7 @@ newsprint (GimpDrawable *drawable,
 
       if (! gimp_drawable_mask_intersect (drawable->drawable_id,
                                           &x1, &y1, &w, &h))
-       return;
+        return;
 
       x2 = x1 + w;
       y2 = y1 + h;
diff --git a/plug-ins/common/nl-filter.c b/plug-ins/common/nl-filter.c
index b80cd91..cf183e3 100644
--- a/plug-ins/common/nl-filter.c
+++ b/plug-ins/common/nl-filter.c
@@ -919,7 +919,7 @@ nlfilter (GimpDrawable *drawable,
     {
       if (! gimp_drawable_mask_intersect (drawable->drawable_id,
                                           &x1, &y1, &width, &height))
-       return;
+        return;
 
       y2 = y1 + height;
     }
diff --git a/plug-ins/common/oilify.c b/plug-ins/common/oilify.c
index 4cbd582..189309f 100644
--- a/plug-ins/common/oilify.c
+++ b/plug-ins/common/oilify.c
@@ -475,7 +475,7 @@ oilify (GimpDrawable *drawable,
     {
       if (! gimp_drawable_mask_intersect (drawable->drawable_id,
                                           &x1, &y1, &width, &height))
-       return;
+        return;
 
       x2 = x1 + width;
       y2 = y1 + height;
diff --git a/plug-ins/common/sparkle.c b/plug-ins/common/sparkle.c
index 2eee52d..5792d81 100644
--- a/plug-ins/common/sparkle.c
+++ b/plug-ins/common/sparkle.c
@@ -633,7 +633,7 @@ compute_lum_threshold (GimpDrawable *drawable,
   gboolean     has_alpha;
   gint         i;
   gint         x1, y1;
-  gint        width, height;
+  gint         width, height;
 
   /*  zero out the luminosity values array  */
   memset (values, 0, sizeof (gint) * 256);
@@ -720,7 +720,7 @@ sparkle (GimpDrawable *drawable,
     {
       if (! gimp_drawable_mask_intersect (drawable->drawable_id,
                                           &x1, &y1, &width, &height))
-       return;
+        return;
 
       x2 = x1 + width;
       y2 = y1 + height;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]