summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/pngread.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/pngread.cxx')
-rw-r--r--vcl/source/gdi/pngread.cxx29
1 files changed, 16 insertions, 13 deletions
diff --git a/vcl/source/gdi/pngread.cxx b/vcl/source/gdi/pngread.cxx
index 6bf4e7fedc65..e51f04c15fcc 100644
--- a/vcl/source/gdi/pngread.cxx
+++ b/vcl/source/gdi/pngread.cxx
@@ -823,44 +823,47 @@ void PNGReaderImpl::ImplGetGamma()
void PNGReaderImpl::ImplGetBackground()
{
- switch ( mnColorType )
+ switch (mnColorType)
{
- case 3 :
+ case 3:
{
- if ( mnChunkLen == 1 )
+ if (mnChunkLen == 1)
{
sal_uInt16 nCol = *maDataIter++;
- if ( nCol < mxAcc->GetPaletteEntryCount() )
+
+ if (nCol < mxAcc->GetPaletteEntryCount())
{
- mxAcc->Erase( mxAcc->GetPaletteColor( (sal_uInt8)nCol ) );
+ BitmapColor aBmpColor = mxAcc->GetPaletteColor(static_cast<sal_uInt8>(nCol));
+ mxAcc->Erase(aBmpColor.GetColor());
break;
}
}
}
break;
- case 0 :
- case 4 :
+ case 0:
+ case 4:
{
- if ( mnChunkLen == 2 )
+ if (mnChunkLen == 2)
{
// the color type 0 and 4 is always greyscale,
// so the return value can be used as index
sal_uInt8 nIndex = ImplScaleColor();
- mxAcc->Erase( mxAcc->GetPaletteColor( nIndex ) );
+ BitmapColor aBmpColor = mxAcc->GetPaletteColor(nIndex);
+ mxAcc->Erase(aBmpColor.GetColor());
}
}
break;
- case 2 :
- case 6 :
+ case 2:
+ case 6:
{
- if ( mnChunkLen == 6 )
+ if (mnChunkLen == 6)
{
sal_uInt8 nRed = ImplScaleColor();
sal_uInt8 nGreen = ImplScaleColor();
sal_uInt8 nBlue = ImplScaleColor();
- mxAcc->Erase( Color( nRed, nGreen, nBlue ) );
+ mxAcc->Erase(Color(nRed, nGreen, nBlue));
}
}
break;