On Wed, Apr 23, 2008 at 9:34 AM, Teo Fonrouge <[EMAIL PROTECTED]> wrote:

>  2008-04-23 02:20 UTC-0500 Teo Fonrouge (teo/at/windtelsoft/dot/com)
>   * contrib/hbgd/gdimage.prg
>     ! Fixed warning at gdimage.prg(271):
>       "Warning W0019  Duplicate declaration of Method 'GETTRUECOLOR'"
>       the method was having a INLINE to the gdImageTrueColorPixel() function
>       and the fix simply renamed the method name from 'GetTrueColor' to
>       'GetTrueColorPixel'. Please, someone used to the hbgd lib check if the
>       new method name is correct.

To fix it I've removed:

   METHOD GetTrueColor( r, g, b )          INLINE gdTrueColor( r, g, b )
   METHOD GetTrueColorAlpha( r, g, b, a )  INLINE gdTrueColorAlpha( r, g, b, a )

they simply "rename" generic gd functions not related to the object
itself while

   METHOD GetTrueColor( x, y )             INLINE
gdImageTrueColorPixel( ::pImage, x, y )

it's related to the object.

best regards,
Lorenzo
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to