diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-05-31 17:00:49 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2018-06-01 11:14:43 +0200 |
commit | 36ad2b13371a24d99dcec16a60b48d895e0228aa (patch) | |
tree | 1d1cc5e345438e7a05db93f1ceebb2786d1735bf /svx/source/xoutdev/xtablend.cxx | |
parent | 6c4135416f79aebf02afa58d6d125f5c175b34d7 (diff) |
drop Image(Bitmap) constructor
and convert some more code from Bitmap to BitmapEx
Change-Id: Icf3c18608e0bb608408fe69722441cfa19f6b161
Reviewed-on: https://gerrit.libreoffice.org/55160
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'svx/source/xoutdev/xtablend.cxx')
-rw-r--r-- | svx/source/xoutdev/xtablend.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/xoutdev/xtablend.cxx b/svx/source/xoutdev/xtablend.cxx index 0cf7502ba55d..ccf9aba113eb 100644 --- a/svx/source/xoutdev/xtablend.cxx +++ b/svx/source/xoutdev/xtablend.cxx @@ -79,9 +79,9 @@ bool XLineEndList::Create() return true; } -Bitmap XLineEndList::CreateBitmapForUI( long nIndex ) +BitmapEx XLineEndList::CreateBitmapForUI( long nIndex ) { - Bitmap aRetval; + BitmapEx aRetval; OSL_ENSURE(nIndex < Count(), "OOps, access out of range (!)"); if(nIndex < Count()) |