mirror of https://github.com/GNOME/gimp.git
remove bogus constification
* app/blend.c: remove bogus constification * po/sv.po: updates from Tomas Ogren <stric@ing.umu.se> -Yosh
This commit is contained in:
parent
62e910d9ef
commit
12085bcb60
|
@ -1,3 +1,9 @@
|
|||
Fri Jan 1 19:28:23 PST 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* app/blend.c: remove bogus constification
|
||||
|
||||
* po/sv.po: updates from Tomas Ogren <stric@ing.umu.se>
|
||||
|
||||
Fri Dec 25 10:01:19 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* i18n markings from Daniel Egger (mostly removal of tags around
|
||||
|
|
|
@ -208,7 +208,7 @@ static PixelRegion distR =
|
|||
};
|
||||
|
||||
/* the blend option menu items -- the blend modes */
|
||||
static const MenuItem blend_option_items[] =
|
||||
static MenuItem blend_option_items[] =
|
||||
{
|
||||
{ N_("FG to BG RGB"), 0, 0, blend_mode_callback, (gpointer) FG_BG_RGB_MODE, NULL, NULL },
|
||||
{ N_("FG to BG HSV"), 0, 0, blend_mode_callback, (gpointer) FG_BG_HSV_MODE, NULL, NULL },
|
||||
|
@ -218,7 +218,7 @@ static const MenuItem blend_option_items[] =
|
|||
};
|
||||
|
||||
/* the gradient option menu items -- the gradient modes */
|
||||
static const MenuItem gradient_option_items[] =
|
||||
static MenuItem gradient_option_items[] =
|
||||
{
|
||||
{ N_("Linear"), 0, 0, gradient_type_callback, (gpointer) Linear, NULL, NULL },
|
||||
{ N_("Bi-Linear"), 0, 0, gradient_type_callback, (gpointer) BiLinear, NULL, NULL },
|
||||
|
@ -237,7 +237,7 @@ static BlendOptions *blend_options = NULL;
|
|||
|
||||
/* repeat menu items */
|
||||
|
||||
static const MenuItem repeat_option_items[] =
|
||||
static MenuItem repeat_option_items[] =
|
||||
{
|
||||
{ N_("None"), 0, 0, repeat_type_callback, (gpointer) REPEAT_NONE, NULL, NULL },
|
||||
{ N_("Sawtooth wave"), 0, 0, repeat_type_callback, (gpointer) REPEAT_SAWTOOTH, NULL, NULL },
|
||||
|
|
|
@ -208,7 +208,7 @@ static PixelRegion distR =
|
|||
};
|
||||
|
||||
/* the blend option menu items -- the blend modes */
|
||||
static const MenuItem blend_option_items[] =
|
||||
static MenuItem blend_option_items[] =
|
||||
{
|
||||
{ N_("FG to BG RGB"), 0, 0, blend_mode_callback, (gpointer) FG_BG_RGB_MODE, NULL, NULL },
|
||||
{ N_("FG to BG HSV"), 0, 0, blend_mode_callback, (gpointer) FG_BG_HSV_MODE, NULL, NULL },
|
||||
|
@ -218,7 +218,7 @@ static const MenuItem blend_option_items[] =
|
|||
};
|
||||
|
||||
/* the gradient option menu items -- the gradient modes */
|
||||
static const MenuItem gradient_option_items[] =
|
||||
static MenuItem gradient_option_items[] =
|
||||
{
|
||||
{ N_("Linear"), 0, 0, gradient_type_callback, (gpointer) Linear, NULL, NULL },
|
||||
{ N_("Bi-Linear"), 0, 0, gradient_type_callback, (gpointer) BiLinear, NULL, NULL },
|
||||
|
@ -237,7 +237,7 @@ static BlendOptions *blend_options = NULL;
|
|||
|
||||
/* repeat menu items */
|
||||
|
||||
static const MenuItem repeat_option_items[] =
|
||||
static MenuItem repeat_option_items[] =
|
||||
{
|
||||
{ N_("None"), 0, 0, repeat_type_callback, (gpointer) REPEAT_NONE, NULL, NULL },
|
||||
{ N_("Sawtooth wave"), 0, 0, repeat_type_callback, (gpointer) REPEAT_SAWTOOTH, NULL, NULL },
|
||||
|
|
|
@ -208,7 +208,7 @@ static PixelRegion distR =
|
|||
};
|
||||
|
||||
/* the blend option menu items -- the blend modes */
|
||||
static const MenuItem blend_option_items[] =
|
||||
static MenuItem blend_option_items[] =
|
||||
{
|
||||
{ N_("FG to BG RGB"), 0, 0, blend_mode_callback, (gpointer) FG_BG_RGB_MODE, NULL, NULL },
|
||||
{ N_("FG to BG HSV"), 0, 0, blend_mode_callback, (gpointer) FG_BG_HSV_MODE, NULL, NULL },
|
||||
|
@ -218,7 +218,7 @@ static const MenuItem blend_option_items[] =
|
|||
};
|
||||
|
||||
/* the gradient option menu items -- the gradient modes */
|
||||
static const MenuItem gradient_option_items[] =
|
||||
static MenuItem gradient_option_items[] =
|
||||
{
|
||||
{ N_("Linear"), 0, 0, gradient_type_callback, (gpointer) Linear, NULL, NULL },
|
||||
{ N_("Bi-Linear"), 0, 0, gradient_type_callback, (gpointer) BiLinear, NULL, NULL },
|
||||
|
@ -237,7 +237,7 @@ static BlendOptions *blend_options = NULL;
|
|||
|
||||
/* repeat menu items */
|
||||
|
||||
static const MenuItem repeat_option_items[] =
|
||||
static MenuItem repeat_option_items[] =
|
||||
{
|
||||
{ N_("None"), 0, 0, repeat_type_callback, (gpointer) REPEAT_NONE, NULL, NULL },
|
||||
{ N_("Sawtooth wave"), 0, 0, repeat_type_callback, (gpointer) REPEAT_SAWTOOTH, NULL, NULL },
|
||||
|
|
|
@ -208,7 +208,7 @@ static PixelRegion distR =
|
|||
};
|
||||
|
||||
/* the blend option menu items -- the blend modes */
|
||||
static const MenuItem blend_option_items[] =
|
||||
static MenuItem blend_option_items[] =
|
||||
{
|
||||
{ N_("FG to BG RGB"), 0, 0, blend_mode_callback, (gpointer) FG_BG_RGB_MODE, NULL, NULL },
|
||||
{ N_("FG to BG HSV"), 0, 0, blend_mode_callback, (gpointer) FG_BG_HSV_MODE, NULL, NULL },
|
||||
|
@ -218,7 +218,7 @@ static const MenuItem blend_option_items[] =
|
|||
};
|
||||
|
||||
/* the gradient option menu items -- the gradient modes */
|
||||
static const MenuItem gradient_option_items[] =
|
||||
static MenuItem gradient_option_items[] =
|
||||
{
|
||||
{ N_("Linear"), 0, 0, gradient_type_callback, (gpointer) Linear, NULL, NULL },
|
||||
{ N_("Bi-Linear"), 0, 0, gradient_type_callback, (gpointer) BiLinear, NULL, NULL },
|
||||
|
@ -237,7 +237,7 @@ static BlendOptions *blend_options = NULL;
|
|||
|
||||
/* repeat menu items */
|
||||
|
||||
static const MenuItem repeat_option_items[] =
|
||||
static MenuItem repeat_option_items[] =
|
||||
{
|
||||
{ N_("None"), 0, 0, repeat_type_callback, (gpointer) REPEAT_NONE, NULL, NULL },
|
||||
{ N_("Sawtooth wave"), 0, 0, repeat_type_callback, (gpointer) REPEAT_SAWTOOTH, NULL, NULL },
|
||||
|
|
Loading…
Reference in New Issue