fixed a stupid typo.

* libgimpwidgets/gimppreviewarea.c: fixed a stupid typo.
This commit is contained in:
David Odin 2004-09-08 14:51:02 +00:00
parent 7f075c87d8
commit ee2e6eac86
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-09-08 DindinX <david@dindinx.org>
* libgimpwidgets/gimppreviewarea.c: fixed a stupid typo.
2004-09-08 Sven Neumann <sven@gimp.org>
* libgimpwidgets/gimppreviewarea.c (gimp_preview_area_fill):

View File

@ -772,7 +772,7 @@ gimp_preview_area_blend (GimpPreviewArea *area,
for (col = x; col < x + width; col++, s1 += 2, s2 += 2, d+= 3)
{
guchar inter[1];
guchar inter[2];
inter[1] = ((s1[1] << 8) + (s2[1] - s1[1]) * opacity) >> 8;
@ -1232,7 +1232,7 @@ gimp_preview_area_mask (GimpPreviewArea *area,
default:
{
guchar inter[1];
guchar inter[2];
inter[1] = ((s1[1] << 8) + (s2[1] - s1[1]) * m[0]) >> 8;