summaryrefslogtreecommitdiff
path: root/include/vcl/BitmapTools.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-02-12 14:07:24 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-02-14 07:28:01 +0100
commit83330a608d0e0be9735d00ae5d60ba262bd235c3 (patch)
tree9c373721e600e3582eca6a3ac0f7a001ccc81f69 /include/vcl/BitmapTools.hxx
parent2096aac8b958db66b3ddce16b06dca87edc8ba0a (diff)
use Color, not BitmapColor in RawBitmap
because we don't want palette images Change-Id: If087e51503714bf8474ae320381f80196092ceb0 Reviewed-on: https://gerrit.libreoffice.org/49662 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/BitmapTools.hxx')
-rw-r--r--include/vcl/BitmapTools.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/vcl/BitmapTools.hxx b/include/vcl/BitmapTools.hxx
index 3f9629a51905..d5c3056e8738 100644
--- a/include/vcl/BitmapTools.hxx
+++ b/include/vcl/BitmapTools.hxx
@@ -32,13 +32,15 @@ public:
maSize(rSize)
{
}
- void SetPixel(long nY, long nX, BitmapColor nColor)
+ void SetPixel(long nY, long nX, Color nColor)
{
long p = (nY * maSize.getWidth() + nX) * 3;
mpData[ p++ ] = nColor.GetRed();
mpData[ p++ ] = nColor.GetGreen();
mpData[ p ] = nColor.GetBlue();
}
+ // so we don't accidentally leave any code in that uses palette color indexes
+ void SetPixel(long nY, long nX, BitmapColor nColor) = delete;
long Height() { return maSize.Height(); }
long Width() { return maSize.Width(); }
};