diff options
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/inc/awt/vclxgraphics.hxx | 7 | ||||
-rw-r--r-- | toolkit/source/awt/vclxgraphics.cxx | 3 |
2 files changed, 1 insertions, 9 deletions
diff --git a/toolkit/inc/awt/vclxgraphics.hxx b/toolkit/inc/awt/vclxgraphics.hxx index ff697ead31b4..acf03dd17874 100644 --- a/toolkit/inc/awt/vclxgraphics.hxx +++ b/toolkit/inc/awt/vclxgraphics.hxx @@ -28,7 +28,6 @@ #include <vcl/vclptr.hxx> #include <com/sun/star/awt/XGraphics2.hpp> -#include <com/sun/star/lang/XUnoTunnel.hpp> #include <memory> @@ -52,8 +51,7 @@ namespace o3tl class VCLXGraphics final : public cppu::WeakImplHelper< - css::awt::XGraphics2, - css::lang::XUnoTunnel> + css::awt::XGraphics2> { private: // used to return same reference on each call to getDevice() @@ -80,9 +78,6 @@ public: void SetOutputDevice( OutputDevice* pOutDev ); OutputDevice* GetOutputDevice() const { return mpOutputDevice; } - // css::lang::XUnoTunnel - UNO3_GETIMPLEMENTATION_DECL(VCLXGraphics) - // css::awt::XGraphics Attributes virtual css::uno::Reference< css::awt::XDevice > SAL_CALL getDevice() override; virtual void SAL_CALL setTextColor( ::sal_Int32 _textcolor ) override; diff --git a/toolkit/source/awt/vclxgraphics.cxx b/toolkit/source/awt/vclxgraphics.cxx index bbbb75e0545d..b89a67f49506 100644 --- a/toolkit/source/awt/vclxgraphics.cxx +++ b/toolkit/source/awt/vclxgraphics.cxx @@ -35,9 +35,6 @@ using namespace com::sun::star; -// lang::XUnoTunnel -UNO3_GETIMPLEMENTATION_IMPL( VCLXGraphics ); - VCLXGraphics::VCLXGraphics() : mpOutputDevice(nullptr) , meRasterOp(RasterOp::OverPaint) |