From 979d58c9a96884e36d1585df0c04c89b1f53fa99 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 30 Jun 2017 11:08:36 +0200 Subject: loplugin:unusedfields in toolkit..xmloff Change-Id: I4964ff97e0a1735dc08c6ad204cae0b08e9ffc2c Reviewed-on: https://gerrit.libreoffice.org/39406 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/toolkit/awt/vclxdevice.hxx | 8 -------- 1 file changed, 8 deletions(-) (limited to 'include/toolkit/awt') diff --git a/include/toolkit/awt/vclxdevice.hxx b/include/toolkit/awt/vclxdevice.hxx index 94f4715460ad..8d900612abb3 100644 --- a/include/toolkit/awt/vclxdevice.hxx +++ b/include/toolkit/awt/vclxdevice.hxx @@ -33,9 +33,6 @@ class OutputDevice; class VirtualDevice; -// For using nDummy, no incompatible update, add a sal_Bool bCreatedWithToolkitMember later... -#define FLAGS_CREATEDWITHTOOLKIT 0x00000001 - /// An UNO wrapper for the VCL OutputDevice class TOOLKIT_DLLPUBLIC VCLXDevice : public css::awt::XDevice, @@ -50,9 +47,6 @@ class TOOLKIT_DLLPUBLIC VCLXDevice : private: VclPtr mpOutputDevice; -public: - sal_uInt32 nFlags; - public: VCLXDevice(); virtual ~VCLXDevice() override; @@ -60,8 +54,6 @@ public: void SetOutputDevice( const VclPtr &pOutDev ) { mpOutputDevice = pOutDev; } const VclPtr& GetOutputDevice() const { return mpOutputDevice; } - void SetCreatedWithToolkit( bool bCreatedWithToolkit ); - // css::uno::XInterface css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override; void SAL_CALL acquire() throw() override { OWeakObject::acquire(); } -- cgit