diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2021-04-06 10:21:01 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2021-04-06 06:35:11 +0200 |
commit | 615ceb107e9faf01b568b0a2440a3f09c8f88ca6 (patch) | |
tree | d5d26e22e80bb52f31b3d8ee8c11e0d28f0cf719 /vcl/inc | |
parent | c7cfd3323cf80d5953f5c3808c1afd6fec0c674b (diff) |
vcl: remove 4-bit bitmap support from qt5 backend
We removed 4-bit support for bitmaps, but the qt5 backend still has
(special) support this bitmap format, which now can safely be
removed and make the backend a lot simpler.
Change-Id: I12309909a9ee3079cef7c4e59154ac48151e18d5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113619
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/qt5/Qt5Bitmap.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/vcl/inc/qt5/Qt5Bitmap.hxx b/vcl/inc/qt5/Qt5Bitmap.hxx index 8ff4297e43f0..201742ef39cd 100644 --- a/vcl/inc/qt5/Qt5Bitmap.hxx +++ b/vcl/inc/qt5/Qt5Bitmap.hxx @@ -29,11 +29,7 @@ class Qt5Bitmap final : public SalBitmap { std::unique_ptr<QImage> m_pImage; BitmapPalette m_aPalette; - - // for 4bit support - std::unique_ptr<sal_uInt8[]> m_pBuffer; Size m_aSize; - sal_uInt32 m_nScanline; public: Qt5Bitmap(); |