diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-18 11:43:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-19 12:39:14 +0100 |
commit | e6e85f139b250b1d48749bd336c28a7e46019993 (patch) | |
tree | 9772b42211d4af882feecfa24089f3d692ea8c8a /canvas | |
parent | e2d067f38b44bd76a291eda00bda4da5c11564bf (diff) |
remove unused typedefs
Change-Id: I6fd7a9fed3a80c91a3766fceefd43c5db0aa5275
Reviewed-on: https://gerrit.libreoffice.org/46763
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/directx/dx_bitmapprovider.hxx | 2 | ||||
-rw-r--r-- | canvas/source/directx/dx_canvas.hxx | 2 | ||||
-rw-r--r-- | canvas/source/directx/dx_winstuff.hxx | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/canvas/source/directx/dx_bitmapprovider.hxx b/canvas/source/directx/dx_bitmapprovider.hxx index f363f91b694e..3003f6ef34c4 100644 --- a/canvas/source/directx/dx_bitmapprovider.hxx +++ b/canvas/source/directx/dx_bitmapprovider.hxx @@ -30,8 +30,6 @@ namespace dxcanvas virtual ~BitmapProvider() {} virtual IBitmapSharedPtr getBitmap() const = 0; }; - - typedef std::shared_ptr<BitmapProvider> BitmapProviderSharedPtr; } #endif diff --git a/canvas/source/directx/dx_canvas.hxx b/canvas/source/directx/dx_canvas.hxx index e690ca04f073..f4ec2f777122 100644 --- a/canvas/source/directx/dx_canvas.hxx +++ b/canvas/source/directx/dx_canvas.hxx @@ -158,8 +158,6 @@ namespace dxcanvas css::uno::Reference< css::uno::XComponentContext > mxComponentContext; IBitmapSharedPtr mpTarget; }; - - typedef ::rtl::Reference< BitmapCanvas > BitmapCanvasRef; } #endif diff --git a/canvas/source/directx/dx_winstuff.hxx b/canvas/source/directx/dx_winstuff.hxx index 2fd657fda3fe..c2c4fd4fe4e3 100644 --- a/canvas/source/directx/dx_winstuff.hxx +++ b/canvas/source/directx/dx_winstuff.hxx @@ -66,9 +66,7 @@ namespace dxcanvas typedef std::shared_ptr< Gdiplus::Graphics > GraphicsSharedPtr; typedef std::shared_ptr< Gdiplus::GraphicsPath > GraphicsPathSharedPtr; typedef std::shared_ptr< Gdiplus::Bitmap > BitmapSharedPtr; - typedef std::shared_ptr< Gdiplus::CachedBitmap > CachedBitmapSharedPtr; typedef std::shared_ptr< Gdiplus::Font > FontSharedPtr; - typedef std::shared_ptr< Gdiplus::Brush > BrushSharedPtr; typedef std::shared_ptr< Gdiplus::TextureBrush > TextureBrushSharedPtr; /** COM object RAII wrapper |