summaryrefslogtreecommitdiff
path: root/canvas/source/directx/dx_surfacebitmap.cxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2021-05-04 13:54:37 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2021-05-04 15:29:53 +0200
commit7f0b5f8eb234d2e1cc40055b275799df503ea736 (patch)
treeb3e6bbecd261bc4dbaaf987514e463064707d677 /canvas/source/directx/dx_surfacebitmap.cxx
parentc46a231b987b92bd866b415d1a0ba0d3a26a2457 (diff)
Use sal::systools::COMReference and drop dxcanvas::COMReference
Change-Id: I352147dd86d8ba73da1706c42c885bef0f11b2cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115071 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'canvas/source/directx/dx_surfacebitmap.cxx')
-rw-r--r--canvas/source/directx/dx_surfacebitmap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/directx/dx_surfacebitmap.cxx b/canvas/source/directx/dx_surfacebitmap.cxx
index e8eb44566c8f..b6e4e12489c2 100644
--- a/canvas/source/directx/dx_surfacebitmap.cxx
+++ b/canvas/source/directx/dx_surfacebitmap.cxx
@@ -47,7 +47,7 @@ namespace dxcanvas
struct DXColorBuffer : public canvas::IColorBuffer
{
public:
- DXColorBuffer( const COMReference<surface_type>& rSurface,
+ DXColorBuffer( const sal::systools::COMReference<surface_type>& rSurface,
const ::basegfx::B2IVector& rSize )
: maSize(rSize)
, maLockedRect{}
@@ -69,7 +69,7 @@ namespace dxcanvas
::basegfx::B2IVector maSize;
mutable D3DLOCKED_RECT maLockedRect;
- mutable COMReference<surface_type> mpSurface;
+ sal::systools::COMReference<surface_type> mpSurface;
};
sal_uInt8* DXColorBuffer::lock() const