summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-12-22 10:12:28 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-12-22 09:44:37 +0000
commit44f2edbf7a4f6f369a670ba32e7d1cc354c4fd6d (patch)
tree9ce67eb640b99d3766b65e94d6ac9ef1b7b30e8e /include
parent7edfee8e4f81c17ec95a03843c509b95b8e404b2 (diff)
loplugin:unusedfields in include/vcl
Change-Id: I61fc04e00970ea0d398ff80f6b1f81ec2f62dd5e Reviewed-on: https://gerrit.libreoffice.org/20868 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/animate.hxx2
-rw-r--r--include/vcl/opengl/OpenGLContext.hxx3
-rw-r--r--include/vcl/print.hxx4
-rw-r--r--include/xmloff/shapeimport.hxx2
4 files changed, 1 insertions, 10 deletions
diff --git a/include/vcl/animate.hxx b/include/vcl/animate.hxx
index 52e81fbb5b29..993824006e5a 100644
--- a/include/vcl/animate.hxx
+++ b/include/vcl/animate.hxx
@@ -93,8 +93,6 @@ struct VCL_DLLPUBLIC AnimationBitmap
struct AInfo
{
- Bitmap aLastSaveBitmap;
- Bitmap aBackBitmap;
Point aStartOrg;
Size aStartSize;
VclPtr<OutputDevice> pOutDev;
diff --git a/include/vcl/opengl/OpenGLContext.hxx b/include/vcl/opengl/OpenGLContext.hxx
index d744bfbe15fa..6f5ba5f36b91 100644
--- a/include/vcl/opengl/OpenGLContext.hxx
+++ b/include/vcl/opengl/OpenGLContext.hxx
@@ -242,9 +242,6 @@ private:
typedef std::unordered_map< rtl::OString, std::shared_ptr<OpenGLProgram>, ProgramHash > ProgramCollection;
ProgramCollection maPrograms;
OpenGLProgram* mpCurrentProgram;
-#ifdef DBG_UTIL
- std::set<SalGraphicsImpl*> maParents;
-#endif
public:
vcl::Region maClipRegion;
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx
index bb30f8ee3371..6340095a0d50 100644
--- a/include/vcl/print.hxx
+++ b/include/vcl/print.hxx
@@ -63,13 +63,11 @@ enum PrinterSupport
class VCL_DLLPUBLIC PrinterPage
{
GDIMetaFile* mpMtf;
- JobSetup maJobSetup;
public:
PrinterPage() : mpMtf( new GDIMetaFile() ) {}
- PrinterPage( GDIMetaFile* pMtf, const JobSetup& rSetup )
- : mpMtf( pMtf ), maJobSetup( rSetup ) {}
+ PrinterPage( GDIMetaFile* pMtf ) : mpMtf( pMtf ) {}
~PrinterPage() { delete mpMtf; }
};
diff --git a/include/xmloff/shapeimport.hxx b/include/xmloff/shapeimport.hxx
index b347ec4f9613..bad4b367b04f 100644
--- a/include/xmloff/shapeimport.hxx
+++ b/include/xmloff/shapeimport.hxx
@@ -273,8 +273,6 @@ class XMLOFF_DLLPUBLIC XMLShapeImportHelper : public salhelper::SimpleReferenceO
XMLShapeImportPageContextImpl* mpPageContext;
- css::uno::Reference< css::frame::XModel > mxModel;
-
// PropertySetMappers and factory
XMLSdPropHdlFactory* mpSdPropHdlFactory;
SvXMLImportPropertyMapper* mpPropertySetMapper;