removed (traditional) and (corrective) from the enum descriptions.

2005-04-22  Sven Neumann  <sven@gimp.org>

	* libgimpbase/gimpbaseenums.h (GimpTransformDirection): removed
	(traditional) and (corrective) from the enum descriptions.
This commit is contained in:
Sven Neumann 2005-04-22 00:47:08 +00:00 committed by Sven Neumann
parent 771d5459ba
commit 909505eca7
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-04-22 Sven Neumann <sven@gimp.org>
* libgimpbase/gimpbaseenums.h (GimpTransformDirection): removed
(traditional) and (corrective) from the enum descriptions.
2005-04-22 Sven Neumann <sven@gimp.org>
* libgimpwidgets/gimpintstore.c: removed the "row_deleted" handler

View File

@ -646,8 +646,8 @@ gimp_transform_direction_get_type (void)
static const GimpEnumDesc descs[] =
{
{ GIMP_TRANSFORM_FORWARD, N_("Forward (traditional)"), NULL },
{ GIMP_TRANSFORM_BACKWARD, N_("Backward (corrective)"), NULL },
{ GIMP_TRANSFORM_FORWARD, N_("Forward"), NULL },
{ GIMP_TRANSFORM_BACKWARD, N_("Backward"), NULL },
{ 0, NULL, NULL }
};

View File

@ -279,8 +279,8 @@ GType gimp_transform_direction_get_type (void) G_GNUC_CONST;
typedef enum
{
GIMP_TRANSFORM_FORWARD, /*< desc="Forward (traditional)" >*/
GIMP_TRANSFORM_BACKWARD /*< desc="Backward (corrective)" >*/
GIMP_TRANSFORM_FORWARD, /*< desc="Forward" >*/
GIMP_TRANSFORM_BACKWARD /*< desc="Backward" >*/
} GimpTransformDirection;