diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-09 15:47:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-10 12:56:14 +0100 |
commit | 32823280efffc02a250fc8d4749b8eb0f491ae77 (patch) | |
tree | d53b384498f6ba4c40b3449205eda96d45fc7c1e /include | |
parent | 617fb9eed92711639e4e632132a649f23ac2f3eb (diff) |
loplugin:unusedmethods
Change-Id: I543b0943f0bc918d59debc8ee051f88c29d18454
Reviewed-on: https://gerrit.libreoffice.org/44553
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/CustomPropertyField.hxx | 1 | ||||
-rw-r--r-- | include/editeng/udlnitem.hxx | 2 | ||||
-rw-r--r-- | include/svx/framelink.hxx | 2 | ||||
-rw-r--r-- | include/svx/rulritem.hxx | 2 | ||||
-rw-r--r-- | include/svx/xmleohlp.hxx | 1 | ||||
-rw-r--r-- | include/vcl/GraphicNativeTransform.hxx | 1 | ||||
-rw-r--r-- | include/vcl/opengl/OpenGLContext.hxx | 3 |
7 files changed, 0 insertions, 12 deletions
diff --git a/include/editeng/CustomPropertyField.hxx b/include/editeng/CustomPropertyField.hxx index 687b4a171375..30f082c5cfd4 100644 --- a/include/editeng/CustomPropertyField.hxx +++ b/include/editeng/CustomPropertyField.hxx @@ -30,7 +30,6 @@ private: OUString msCurrentPresentation; public: - CustomPropertyField(); explicit CustomPropertyField(OUString const & rName, OUString const & rCurrentPresentation); virtual ~CustomPropertyField() override; diff --git a/include/editeng/udlnitem.hxx b/include/editeng/udlnitem.hxx index 94fcfe06f9b8..3c65c015c010 100644 --- a/include/editeng/udlnitem.hxx +++ b/include/editeng/udlnitem.hxx @@ -34,8 +34,6 @@ class EDITENG_DLLPUBLIC SvxTextLineItem : public SfxEnumItem<FontLineStyle> { Color mColor; public: - static SfxPoolItem* CreateDefault(); - SvxTextLineItem( const FontLineStyle eSt, const sal_uInt16 nId ); diff --git a/include/svx/framelink.hxx b/include/svx/framelink.hxx index 3e4b440fc886..887c512e5433 100644 --- a/include/svx/framelink.hxx +++ b/include/svx/framelink.hxx @@ -174,7 +174,6 @@ public: double Dist() const { if(!maImplStyle) return 0.0; return maImplStyle->mfDist; } double Secn() const { if(!maImplStyle) return 0.0; return maImplStyle->mfSecn; } double PatternScale() const { if(!maImplStyle) return 1.0; return maImplStyle->mfPatternScale;} - void SetPatternScale( double fScale ); SvxBorderLineStyle Type() const { if(!maImplStyle) return SvxBorderLineStyle::SOLID; return maImplStyle->mnType; } /// Check if this style is used - this depends on it having any width definition. @@ -273,7 +272,6 @@ public: void sort(); bool empty() const { return maEntries.empty(); } - size_t size() const { return maEntries.size(); } const std::vector< StyleVectorCombination >& getEntries() const{ return maEntries; } }; diff --git a/include/svx/rulritem.hxx b/include/svx/rulritem.hxx index 4ce3bedfcebb..c88ae2711d8b 100644 --- a/include/svx/rulritem.hxx +++ b/include/svx/rulritem.hxx @@ -126,8 +126,6 @@ struct SVX_DLLPUBLIC SvxColumnDescription long nEndMin; //min. possible position of end long nEndMax; //max. possible position of end - SvxColumnDescription(); - SvxColumnDescription(long start, long end, bool bVis); SvxColumnDescription(long start, long end, diff --git a/include/svx/xmleohlp.hxx b/include/svx/xmleohlp.hxx index 833db1690784..c96f40c3d75c 100644 --- a/include/svx/xmleohlp.hxx +++ b/include/svx/xmleohlp.hxx @@ -103,7 +103,6 @@ public: static rtl::Reference<SvXMLEmbeddedObjectHelper> Create( ::comphelper::IEmbeddedHelper& rDocPersist, SvXMLEmbeddedObjectHelperMode eCreateMode ); - static void Destroy( SvXMLEmbeddedObjectHelper* pSvXMLEmbeddedObjectHelper ); // XEmbeddedObjectResolver virtual OUString SAL_CALL resolveEmbeddedObjectURL( const OUString& aURL ) override; diff --git a/include/vcl/GraphicNativeTransform.hxx b/include/vcl/GraphicNativeTransform.hxx index 08053d416536..1ec965a2d8fd 100644 --- a/include/vcl/GraphicNativeTransform.hxx +++ b/include/vcl/GraphicNativeTransform.hxx @@ -34,7 +34,6 @@ public: GraphicNativeTransform(Graphic& rGraphic); ~GraphicNativeTransform(); - bool canBeRotated(); bool rotate(sal_uInt16 aRotation); }; diff --git a/include/vcl/opengl/OpenGLContext.hxx b/include/vcl/opengl/OpenGLContext.hxx index b638d70ccc36..2df8f8c563fb 100644 --- a/include/vcl/opengl/OpenGLContext.hxx +++ b/include/vcl/opengl/OpenGLContext.hxx @@ -74,7 +74,6 @@ public: void dispose(); void requestLegacyContext(); - void requestSingleBufferedRendering(); bool init(vcl::Window* pParent = nullptr); bool init(SystemChildWindow* pChildWindow); @@ -151,8 +150,6 @@ public: void setVCLOnly() { mbVCLOnly = true; } bool isVCLOnly() { return mbVCLOnly; } - bool supportMultiSampling() const; - virtual SystemWindowData generateWinData(vcl::Window* pParent, bool bRequestLegacyContext); private: |