mirror of https://github.com/GNOME/gimp.git
stop distributing Wilber.svg.
2006-06-21 Sven Neumann <sven@gimp.org> * docs/Makefile.am (EXTRA_DIST): stop distributing Wilber.svg. * libgimpcolor/gimpcolorspace.h: formatting.
This commit is contained in:
parent
c646d2eee5
commit
c5a3ee366a
12
ChangeLog
12
ChangeLog
|
@ -1,8 +1,14 @@
|
|||
2006-06-21 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* docs/Makefile.am (EXTRA_DIST): stop distributing Wilber.svg.
|
||||
|
||||
* libgimpcolor/gimpcolorspace.h: formatting.
|
||||
|
||||
2006-06-21 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||
|
||||
* app/tools/gimprectangleselecttool.c: if there is a floating selection
|
||||
and mouse is clicked outside it without movement, anchor it.
|
||||
|
||||
* app/tools/gimprectangleselecttool.c: if there is a floating
|
||||
selection and mouse is clicked outside it without movement, anchor it.
|
||||
|
||||
* app/tools/gimprectangletool.c: corner handle area was scaling
|
||||
improperly when image was zoomed.
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
EXTRA_DIST = \
|
||||
Wilber.svg \
|
||||
Wilber.xcf.gz \
|
||||
Wilber.xcf.gz.README \
|
||||
Wilber_Construction_Kit.xcf.gz
|
||||
|
|
|
@ -57,10 +57,10 @@ void gimp_hwb_to_rgb (gdouble hue,
|
|||
|
||||
/* gint functions */
|
||||
|
||||
void gimp_rgb_to_hsv_int (gint *red /* returns hue */,
|
||||
void gimp_rgb_to_hsv_int (gint *red /* returns hue */,
|
||||
gint *green /* returns saturation */,
|
||||
gint *blue /* returns value */);
|
||||
void gimp_hsv_to_rgb_int (gint *hue /* returns red */,
|
||||
void gimp_hsv_to_rgb_int (gint *hue /* returns red */,
|
||||
gint *saturation /* returns green */,
|
||||
gint *value /* returns blue */);
|
||||
|
||||
|
@ -73,13 +73,13 @@ void gimp_cmyk_to_rgb_int (gint *cyan /* returns red */,
|
|||
gint *yellow /* returns blue */,
|
||||
gint *black /* not changed */);
|
||||
|
||||
void gimp_rgb_to_hsl_int (gint *red /* returns hue */,
|
||||
void gimp_rgb_to_hsl_int (gint *red /* returns hue */,
|
||||
gint *green /* returns saturation */,
|
||||
gint *blue /* returns lightness */);
|
||||
gint gimp_rgb_to_l_int (gint red,
|
||||
gint gimp_rgb_to_l_int (gint red,
|
||||
gint green,
|
||||
gint blue);
|
||||
void gimp_hsl_to_rgb_int (gint *hue /* returns red */,
|
||||
void gimp_hsl_to_rgb_int (gint *hue /* returns red */,
|
||||
gint *saturation /* returns green */,
|
||||
gint *lightness /* returns blue */);
|
||||
|
||||
|
|
Loading…
Reference in New Issue