--- parser3/src/lib/gd/gif.C 2004/03/25 11:50:57 1.4 +++ parser3/src/lib/gd/gif.C 2005/08/09 08:14:50 1.6 @@ -1,7 +1,7 @@ /** @file Parser: image manipulations impl1. - Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) based on: gd @@ -14,7 +14,7 @@ can incorporate them into new versions. */ -static const char * const IDENT_GIF_C="$Date: 2004/03/25 11:50:57 $"; +static const char * const IDENT_GIF_C="$Date: 2005/08/09 08:14:50 $"; #include "gif.h" @@ -522,7 +522,7 @@ void gdImage::Fill(int x, int y, int col if (GetPixel(i, y) != old) { break; } - SetPixel(i, y, color); + DoSetPixel(i, y, color); // PAF, was SetPixel leftLimit = i; } if (leftLimit == (-1)) { @@ -534,7 +534,7 @@ void gdImage::Fill(int x, int y, int col if (GetPixel(i, y) != old) { break; } - SetPixel(i, y, color); + DoSetPixel(i, y, color); // PAF, was SetPixel rightLimit = i; } /* Look at lines above and below and start paints */