changed description for GIMP_INTERPOLATION_LANCZOS to "Sinc (Lanczos3)".

2007-02-19  Sven Neumann  <sven@gimp.org>

	* libgimpbase/gimpbaseenums.[ch]: changed description for
	GIMP_INTERPOLATION_LANCZOS to "Sinc (Lanczos3)". More correct 
and
	more in sync with the other terms.


svn path=/trunk/; revision=21949
This commit is contained in:
Sven Neumann 2007-02-19 12:06:01 +00:00 committed by Sven Neumann
parent 99f1d0e6dd
commit 3bc37e5117
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2007-02-19 Sven Neumann <sven@gimp.org>
* libgimpbase/gimpbaseenums.[ch]: changed description for
GIMP_INTERPOLATION_LANCZOS to "Sinc (Lanczos3)". More correct and
more in sync with the other terms.
2007-02-19 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/tinyscheme/scheme.c (atom2str): use

View File

@ -562,7 +562,7 @@ gimp_interpolation_type_get_type (void)
{ GIMP_INTERPOLATION_NONE, N_("interpolation|None"), NULL },
{ GIMP_INTERPOLATION_LINEAR, N_("interpolation|Linear"), NULL },
{ GIMP_INTERPOLATION_CUBIC, N_("Cubic"), NULL },
{ GIMP_INTERPOLATION_LANCZOS, N_("Lanczos"), NULL },
{ GIMP_INTERPOLATION_LANCZOS, N_("Sinc (Lanczos3)"), NULL },
{ 0, NULL, NULL }
};

View File

@ -248,7 +248,7 @@ typedef enum
GIMP_INTERPOLATION_NONE, /*< desc="interpolation|None" >*/
GIMP_INTERPOLATION_LINEAR, /*< desc="interpolation|Linear" >*/
GIMP_INTERPOLATION_CUBIC, /*< desc="Cubic" >*/
GIMP_INTERPOLATION_LANCZOS /*< desc="Lanczos" >*/
GIMP_INTERPOLATION_LANCZOS /*< desc="Sinc (Lanczos3)" >*/
} GimpInterpolationType;