diff options
-rw-r--r-- | vcl/source/gdi/bmpacc2.cxx | 6 | ||||
-rw-r--r-- | vcl/source/gdi/bmpacc3.cxx | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/vcl/source/gdi/bmpacc2.cxx b/vcl/source/gdi/bmpacc2.cxx index 8cb4b3f37058..3774f566b6bb 100644 --- a/vcl/source/gdi/bmpacc2.cxx +++ b/vcl/source/gdi/bmpacc2.cxx @@ -2,9 +2,9 @@ * * $RCSfile: bmpacc2.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: vg $ $Date: 2004-01-06 13:32:03 $ + * last change: $Author: rt $ $Date: 2004-05-28 11:38:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -147,7 +147,7 @@ IMPL_FORMAT_GETPIXEL( _8BIT_PAL ) IMPL_FORMAT_SETPIXEL( _8BIT_PAL ) { - pScanline[ nX ] = rBitmapColor; + pScanline[ nX ] = rBitmapColor.GetIndex(); } // ------------------------------------------------------------------ diff --git a/vcl/source/gdi/bmpacc3.cxx b/vcl/source/gdi/bmpacc3.cxx index e439fbfe1339..31307dbb588d 100644 --- a/vcl/source/gdi/bmpacc3.cxx +++ b/vcl/source/gdi/bmpacc3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: bmpacc3.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2004-05-21 16:23:07 $ + * last change: $Author: rt $ $Date: 2004-05-28 11:38:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -94,7 +94,7 @@ void BitmapWriteAccess::SetLineColor( const Color& rColor ) if( rColor.GetTransparency() == 255 ) mpLineColor = NULL; else - mpLineColor = new BitmapColor( HasPalette() ? (BYTE) GetBestPaletteIndex( rColor ) : rColor ); + mpLineColor = ( HasPalette() ? new BitmapColor( (BYTE) GetBestPaletteIndex( rColor ) ) : new BitmapColor( rColor ) ); } // ------------------------------------------------------------------ @@ -128,7 +128,7 @@ void BitmapWriteAccess::SetFillColor( const Color& rColor ) if( rColor.GetTransparency() == 255 ) mpFillColor = NULL; else - mpFillColor = new BitmapColor( HasPalette() ? (BYTE) GetBestPaletteIndex( rColor ) : rColor ); + mpFillColor = ( HasPalette() ? new BitmapColor( (BYTE) GetBestPaletteIndex( rColor ) ) : new BitmapColor( rColor ) ); } // ------------------------------------------------------------------ |