removed trailing whitespace.

2004-02-05  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpimage-crop.c: removed trailing whitespace.

	* app/gui/debug-commands.[ch]
	* app/gui/toolbox-menu.c: renamed ENABLE_DEBUG_ENTRIES to
	ENABLE_DEBUG_MENU and #define it to be equal to GIMP_UNSTABLE.
This commit is contained in:
Michael Natterer 2004-02-05 12:52:35 +00:00 committed by Michael Natterer
parent b48b110e3e
commit be6b23d68a
8 changed files with 59 additions and 51 deletions

View File

@ -1,3 +1,11 @@
2004-02-05 Michael Natterer <mitch@gimp.org>
* app/core/gimpimage-crop.c: removed trailing whitespace.
* app/gui/debug-commands.[ch]
* app/gui/toolbox-menu.c: renamed ENABLE_DEBUG_ENTRIES to
ENABLE_DEBUG_MENU and #define it to be equal to GIMP_UNSTABLE.
2004-02-05 Michael Natterer <mitch@gimp.org>
* app/tools/gimprectselecttool.c

View File

@ -35,7 +35,7 @@
#include "menus.h"
#ifdef ENABLE_DEBUG_ENTRIES
#ifdef ENABLE_DEBUG_MENU
/* local function prototypes */
@ -145,4 +145,4 @@ debug_dump_menus_recurse_menu (GtkWidget *menu,
}
}
#endif /* ENABLE_DEBUG_ENTRIES */
#endif /* ENABLE_DEBUG_MENU */

View File

@ -20,17 +20,17 @@
#define __DEBUG_COMMANDS_H__
#define ENABLE_DEBUG_ENTRIES 1
#define ENABLE_DEBUG_MENU GIMP_UNSTABLE
#ifdef ENABLE_DEBUG_ENTRIES
#ifdef ENABLE_DEBUG_MENU
void debug_dump_menus_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
void debug_mem_profile_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
#endif /* ENABLE_DEBUG_ENTRIES */
#endif /* ENABLE_DEBUG_MENU */
#endif /* __DEBUG_COMMANDS_H__ */

View File

@ -63,9 +63,9 @@ static AutoCropType gimp_image_crop_guess_bgcolor (GObject *get_color_obj,
gint bytes,
gboolean has_alpha,
guchar *color,
gint x1,
gint x2,
gint y1,
gint x1,
gint x2,
gint y1,
gint y2);
static gint gimp_image_crop_colors_equal (guchar *col1,
guchar *col2,
@ -287,7 +287,7 @@ gimp_image_crop_auto_shrink (GimpImage *gimage,
gint bytes;
gint x, y, abort;
gboolean retval = FALSE;
g_return_val_if_fail (gimage != NULL, FALSE);
g_return_val_if_fail (GIMP_IS_IMAGE (gimage), FALSE);
g_return_val_if_fail (shrunk_x1 != NULL, FALSE);
@ -296,10 +296,10 @@ gimp_image_crop_auto_shrink (GimpImage *gimage,
g_return_val_if_fail (shrunk_y2 != NULL, FALSE);
gimp_set_busy (gimage->gimp);
/* You should always keep in mind that crop->tx2 and crop->ty2 are the NOT the
coordinates of the bottomright corner of the area to be cropped. They point
at the pixel located one to the right and one to the bottom.
coordinates of the bottomright corner of the area to be cropped. They point
at the pixel located one to the right and one to the bottom.
*/
if (active_drawable_only)
@ -316,7 +316,7 @@ gimp_image_crop_auto_shrink (GimpImage *gimage,
}
else
{
has_alpha = TRUE;
has_alpha = TRUE;
bytes = gimp_image_projection_bytes (gimage);
get_color_obj = G_OBJECT (gimage);
get_color_func = (GetColorFunc) gimp_image_projection_get_color_at;
@ -341,10 +341,10 @@ gimp_image_crop_auto_shrink (GimpImage *gimage,
height = y2 - y1;
if (active_drawable_only)
pixel_region_init (&PR, gimp_drawable_data (active_drawable),
pixel_region_init (&PR, gimp_drawable_data (active_drawable),
x1, y1, width, height, FALSE);
else
pixel_region_init (&PR, gimp_image_projection (gimage),
pixel_region_init (&PR, gimp_image_projection (gimage),
x1, y1, width, height, FALSE);
/* The following could be optimized further by processing
@ -387,7 +387,7 @@ gimp_image_crop_auto_shrink (GimpImage *gimage,
abort = !(colors_equal_func) (bgcolor, buffer + y * bytes, bytes);
}
x1 = x - 1;
/* Check how many of the right lines are uniform/transparent. */
abort = FALSE;
for (x = x2; x > x1 && !abort; x--)
@ -421,10 +421,10 @@ gimp_image_crop_guess_bgcolor (GObject *get_color_obj,
gint bytes,
gboolean has_alpha,
guchar *color,
gint x1,
gint x2,
gint y1,
gint y2)
gint x1,
gint x2,
gint y1,
gint y2)
{
guchar *tl = NULL;
guchar *tr = NULL;
@ -433,19 +433,19 @@ gimp_image_crop_guess_bgcolor (GObject *get_color_obj,
gint i, alpha;
for (i = 0; i < bytes; i++)
color[i] = 0;
color[i] = 0;
/* First check if there's transparency to crop. If not, guess the
/* First check if there's transparency to crop. If not, guess the
* background-color to see if at least 2 corners are equal.
*/
if (!(tl = (*get_color_func) (get_color_obj, x1, y1)))
if (!(tl = (*get_color_func) (get_color_obj, x1, y1)))
goto ERROR;
if (!(tr = (*get_color_func) (get_color_obj, x1, y2)))
if (!(tr = (*get_color_func) (get_color_obj, x1, y2)))
goto ERROR;
if (!(bl = (*get_color_func) (get_color_obj, x2, y1)))
goto ERROR;
if (!(br = (*get_color_func) (get_color_obj, x2, y2)))
if (!(bl = (*get_color_func) (get_color_obj, x2, y1)))
goto ERROR;
if (!(br = (*get_color_func) (get_color_obj, x2, y2)))
goto ERROR;
if (has_alpha)
@ -463,7 +463,7 @@ gimp_image_crop_guess_bgcolor (GObject *get_color_obj,
return AUTO_CROP_ALPHA;
}
}
if (gimp_image_crop_colors_equal (tl, tr, bytes) ||
gimp_image_crop_colors_equal (tl, bl, bytes))
{
@ -479,28 +479,28 @@ gimp_image_crop_guess_bgcolor (GObject *get_color_obj,
goto ERROR;
}
g_free (tl);
g_free (tr);
g_free (bl);
g_free (tl);
g_free (tr);
g_free (bl);
g_free (br);
return AUTO_CROP_COLOR;
ERROR:
g_free (tl);
g_free (tr);
g_free (bl);
g_free (tl);
g_free (tr);
g_free (bl);
g_free (br);
return AUTO_CROP_NOTHING;
}
static int
gimp_image_crop_colors_equal (guchar *col1,
guchar *col2,
gint bytes)
static int
gimp_image_crop_colors_equal (guchar *col1,
guchar *col2,
gint bytes)
{
gboolean equal = TRUE;
gint b;
for (b = 0; b < bytes; b++)
{
if (col1[b] != col2[b])
@ -514,9 +514,9 @@ gimp_image_crop_colors_equal (guchar *col1,
}
static gboolean
gimp_image_crop_colors_alpha (guchar *dummy,
guchar *col,
gint bytes)
gimp_image_crop_colors_alpha (guchar *dummy,
guchar *col,
gint bytes)
{
if (col[bytes-1] == 0)
return TRUE;

View File

@ -35,7 +35,7 @@
#include "menus.h"
#ifdef ENABLE_DEBUG_ENTRIES
#ifdef ENABLE_DEBUG_MENU
/* local function prototypes */
@ -145,4 +145,4 @@ debug_dump_menus_recurse_menu (GtkWidget *menu,
}
}
#endif /* ENABLE_DEBUG_ENTRIES */
#endif /* ENABLE_DEBUG_MENU */

View File

@ -20,17 +20,17 @@
#define __DEBUG_COMMANDS_H__
#define ENABLE_DEBUG_ENTRIES 1
#define ENABLE_DEBUG_MENU GIMP_UNSTABLE
#ifdef ENABLE_DEBUG_ENTRIES
#ifdef ENABLE_DEBUG_MENU
void debug_dump_menus_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
void debug_mem_profile_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
#endif /* ENABLE_DEBUG_ENTRIES */
#endif /* ENABLE_DEBUG_MENU */
#endif /* __DEBUG_COMMANDS_H__ */

View File

@ -225,7 +225,7 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
"gimp-error-console",
GIMP_HELP_ERRORS_DIALOG, NULL },
#ifdef ENABLE_DEBUG_ENTRIES
#ifdef ENABLE_DEBUG_MENU
MENU_BRANCH (N_("/File/D_ebug")),
{ { "/File/Debug/_Mem Profile", NULL,
@ -234,7 +234,7 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
{ { "/File/Debug/_Dump Items", NULL,
debug_dump_menus_cmd_callback, 0 },
NULL, NULL, NULL },
#endif
#endif /* ENABLE_DEBUG_MENU */
MENU_SEPARATOR ("/File/---"),

View File

@ -225,7 +225,7 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
"gimp-error-console",
GIMP_HELP_ERRORS_DIALOG, NULL },
#ifdef ENABLE_DEBUG_ENTRIES
#ifdef ENABLE_DEBUG_MENU
MENU_BRANCH (N_("/File/D_ebug")),
{ { "/File/Debug/_Mem Profile", NULL,
@ -234,7 +234,7 @@ GimpItemFactoryEntry toolbox_menu_entries[] =
{ { "/File/Debug/_Dump Items", NULL,
debug_dump_menus_cmd_callback, 0 },
NULL, NULL, NULL },
#endif
#endif /* ENABLE_DEBUG_MENU */
MENU_SEPARATOR ("/File/---"),